/* ===== RD MOBILE MENU ===== */

.rd-mobilemenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999999;
  transition: 0.3s all ease;
}

.rd-mobilemenu.active {
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}

body.active-nav {
  overflow: hidden;
}

.rd-mobilemenu_ul {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 270px;
  padding: 70px 0 30px;
  color: #484e85;
  background: #ffffff;
  font-size: 14px;
  line-height: 20px;
  padding-left: 0 !important;
  overflow-y: auto;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.15);
  transform: translateX(-270px);
  transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.rd-mobilemenu.active .rd-mobilemenu_ul {
  transform: translateX(0);
}

.rd-mobilemenu_ul a {
  display: block;
  padding: 14px 25px;
  color: #000;
  font-family: var(--font-opensans);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.rd-mobilemenu_ul li.active > a {
  border-left: 3px solid #ff7c00;
  font-weight: 600;
}

.rd-mobilemenu_ul li {
  border-bottom: 1px solid rgba(72, 78, 133, 0.12);
}

.rd-mobilemenu_ul ul a {
  padding: 10px 25px 10px 40px;
  font-size: 13px;
}

.rd-mobilemenu_ul .rd-with-ul {
  position: relative;
}

.rd-submenu-toggle {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rd-submenu-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: #484e85;
  transition: transform 0.2s ease;
}

.rd-with-ul.active .rd-submenu-toggle::after {
  transform: rotate(180deg);
}

.rd-mobilemenu_submenu {
  list-style: none;
  background: #f7f7f9;
}

.rd-mobilemenu_submenu > li {
  padding: 10px 25px 10px 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rd-mobilemenu_submenu .catImg {
  flex: 0 0 36px;
  width: 36px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  border-bottom: 2px solid #ff7b00;
}

.rd-mobilemenu_submenu .catImg img {
  max-width: 22px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.rd-mobilemenu_submenu .catInfo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.rd-mobilemenu_submenu .catInfo .catTitle {
  font-family: var(--font-Inter);
  font-size: 13px;
  font-weight: 600;
  color: #343434;
  cursor: default;
  padding: 0;
  display: block;
}

.rd-mobilemenu_submenu .submenu_f {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rd-mobilemenu_submenu .submenu_f li {
  border-bottom: none;
}

.rd-mobilemenu_submenu .submenu_f .prodPill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border-radius: 8px;
  background: #676767;
  text-decoration: none;
  white-space: nowrap;
}

.rd-mobilemenu_submenu .submenu_f .prodPill::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 13px;
  background: url("/assets/images/header/arrow.png") no-repeat center / contain;
}

.rd-mobilemenu_submenu .submenu_f .prodPill span {
  font-family: var(--font-Inter);
  font-size: 11px;
  color: #ffffff;
}

.rd-mobile-reservar {
  border-bottom: none !important;
  padding: 16px 20px;
}

.rd-mobile-reservar .btn-reservar {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ff7c00;
  border-radius: 30px;
  padding: 10px 20px;
  text-decoration: none;
  justify-content: center;
}

.rd-mobile-reservar .btn-reservar span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.rd-mobile-reservar .btn-reservar img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Panel superior */
.rd-mobilepanel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #2d2d2d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999999;
}

.rd-mobilepanel_title {
  position: absolute;
  top: 50%;
  left: 56px;
  right: 56px;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}

#logoMovil {
  display: inline-block;
}

#logoMovil img {
  height: 38px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Hamburguesa */
.rd-mobilepanel_toggle {
  position: absolute;
  border: none;
  background: none;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-mobilepanel_toggle span {
  position: relative;
  display: block;
  margin: auto;
  transition: all 0.3s ease;
}

.rd-mobilepanel_toggle span,
.rd-mobilepanel_toggle span::before,
.rd-mobilepanel_toggle span::after {
  width: 24px;
  height: 3px;
  background-color: #ff7c00;
  border-radius: 2px;
  backface-visibility: hidden;
}

.rd-mobilepanel_toggle span::before,
.rd-mobilepanel_toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  transition-property: top, transform;
}

.rd-mobilepanel_toggle span::before {
  top: -8px;
}
.rd-mobilepanel_toggle span::after {
  top: 8px;
}

.rd-mobilepanel_toggle.active span {
  background: transparent;
}

.rd-mobilepanel_toggle.active span::before,
.rd-mobilepanel_toggle.active span::after {
  top: 0;
  transition-delay: 0s, 0.3s;
}

.rd-mobilepanel_toggle.active span::before {
  transform: rotate(45deg);
}

.rd-mobilepanel_toggle.active span::after {
  transform: rotate(-45deg);
}

/* Barra social fija en el fondo */
.rd-mobile-social-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999998;
}

.rd-mobile-social-bar img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.rd-mobile-social-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  color: #ff7c00;
  font-size: 12px;
  text-decoration: none;
  border-right: 1px solid rgba(72, 78, 133, 0.12);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.rd-mobile-social-bar a:last-child {
  border-right: none;
}

.rd-mobile-social-bar a:hover {
  background: rgba(72, 78, 133, 0.08);
  color: #ff7c00;
}

@media (max-width: 1650px) {
  #header .hero .content .title {
    font-size: 61px;
  }

  #header .hero .content .text {
    font-size: 43px;
  }

  #intro-1 {
    padding: 90px 0;
  }

  #intro-1 .top img {
    height: 68px;
  }

  #intro-1 .top {
    margin-bottom: 55px;
  }

  #intro-2 .box {
    padding: 0 40px;
  }

  #intro-3 .container {
    max-width: 1400px;
  }

  #intro-3 .image-2 .box {
    top: 50px;
  }

  #intro-4 .bg {
    padding: 130px 0;
  }

  #lProductos .submenu {
    margin-top: 20px;
  }

  #fichas-1,
  #producto-1 {
    padding: 80px 0;
  }

  #producto-1 .head {
    margin: 0 auto 40px;
    max-width: 1350px;
  }

  #fichas-1 .content,
  #producto-1 .content {
    gap: 70px;
  }

  #cliente-1 {
    padding: 80px 0;
  }

  #cliente-1 .head {
    max-width: 1350px;
    margin: 0 auto;
  }

  #cliente-1 .logo {
    flex: 0 0 207px;
    width: 207px;
    height: 207px;
    border-radius: 22px;
  }

  #cliente-1 .testi {
    padding: 0 0 60px;
  }

  #contacto-1 {
    padding: 80px 0;
  }
}

@media (max-width: 1600px) {
  #intro-3 .image {
    width: 380px;
    height: 525px;
  }
}

@media (max-width: 1460px) {
  #intro-3 .image-2 .box br {
    display: none;
  }

  #intro-3 .image-2 .box {
    width: 500px;
    gap: 20px;
  }

  #intro-3 .image-2 .box .text {
    font-size: 22px;
  }
}

@media (max-width: 1400px) {
  #intro-1 .items {
    gap: 60px;
  }

  #intro-4 .content .logos .logo {
    width: 252px;
    height: 199px;
  }

  #intro-4 .content .logos .logo:last-child img {
    width: 158px;
    height: 157px;
  }

  #lProductos .submenu {
    width: 1140px;
    height: 460px;
    padding: 20px 44px;
  }

  #lProductos .catImg {
    flex: 0 0 62px;
    width: 62px;
    height: 92px;
  }

  #lProductos .catImg img {
    max-width: 40px;
    max-height: 70px;
  }

  #lProductos .submenu .prodPill {
    min-width: 62px;
    height: 26px;
  }

  #lProductos .submenu > li:nth-child(-n + 8)::before {
    width: 238px;
  }

  #lProductos .submenu > li:not(:nth-child(4n))::after {
    height: 104px;
    right: 18px;
  }

  #fichas-1 .content {
    gap: 40px;
  }
}

@media (max-width: 1300px) {
  #header .social .icon {
    top: 0;
  }

  #header .nav > ul {
    gap: 25px;
  }

  #header .logo img {
    height: 64px;
  }

  #header .hero .content .title {
    font-size: 50px;
  }

  #header .hero .content .text {
    font-size: 35px;
  }

  #header .social {
    gap: 8px;
  }

  #header .social .icon {
    height: 35px;
    width: 35px;
    font-size: 18px;
  }

  #header .nav ul li a {
    font-size: 14px;
    letter-spacing: 0;
  }

  #intro-1 .top {
    gap: 24px;
  }

  #intro-1 .top .title {
    font-size: 38px;
  }

  #intro-1 .top img {
    height: 64px;
  }

  #intro-1 .items {
    gap: 30px;
  }

  #intro-1 {
    padding: 80px 0;
  }

  #intro-1 .items .item .text {
    font-size: 16px;
  }

  #intro-2 .box .text {
    font-size: 24px;
  }

  #intro-4 .bg {
    padding: 80px 0;
  }

  #intro-4 .content .title {
    font-size: 38px;
  }

  #intro-4 .content .subtitle {
    font-size: 22px;
  }

  #intro-4 .content .logos .logo {
    width: 214px;
    height: 169px;
  }

  #intro-4 .content .logos .logo:last-child img {
    width: 134px;
    height: 133px;
  }

  #lProductos .submenu {
    width: 970px;
    height: 392px;
    padding: 17px 38px;
  }

  #lProductos .catImg {
    flex: 0 0 53px;
    width: 53px;
    height: 79px;
  }

  #lProductos .catImg img {
    max-width: 34px;
    max-height: 60px;
  }

  #lProductos .submenu .catTitle {
    font-size: 13px;
  }

  #lProductos .submenu .prodPill {
    min-width: 53px;
    height: 22px;
  }

  #lProductos .prodPill span {
    font-size: 12px;
  }

  #lProductos .submenu > li:nth-child(-n + 8)::before {
    width: 203px;
  }

  #lProductos .submenu > li:not(:nth-child(4n))::after {
    height: 89px;
    right: 15px;
  }

  #producto-1 .image {
    flex: 0 0 395px;
    width: 395px;
    height: 464px;
  }

  #producto-1 .info {
    flex: 0 0 488px;
    width: 488px;
  }

  #producto-1 .info .box {
    width: 488px;
    height: 56px;
  }

  #producto-1 .info .item .arrow {
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
  }

  #producto-1 .info .row {
    width: 488px;
    height: 56px;
  }

  #producto-1 .info .row .value {
    width: 254px;
    height: 37px;
  }

  #producto-1 .info .box span {
    font-size: 24px;
  }

  #producto-1 .content {
    gap: 30px;
  }

  #fichas-1 .container {
    max-width: 1100px;
  }

  #fichas-1 .content {
    gap: 34px;
  }

  #fichas-1 .sidebar {
    flex: 0 0 375px;
    width: 375px;
  }

  #fichas-1 .sidebar .title {
    width: 375px;
    height: 85px;
    border-radius: 42px;
  }

  #fichas-1 .sidebar .subtitle {
    width: 375px;
    height: 52px;
    border-radius: 25px;
    padding: 0 34px;
    gap: 9px;
  }

  #fichas-1 .sidebar .subtitle .icon {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
  }

  #fichas-1 .sidebar .subtitle .arrow {
    flex: 0 0 18px;
    width: 18px;
    height: 27px;
  }

  #fichas-1 .sidebar .subtitle.active .arrow {
    flex: 0 0 27px;
    width: 27px;
    height: 18px;
  }

  #fichas-1 .sidebar .list {
    padding: 0 17px 0 40px;
    gap: 17px;
  }

  #fichas-1 .sidebar .list li .bullet {
    flex: 0 0 10px;
    width: 10px;
  }

  #fichas-1 .info .head {
    width: 650px;
    height: 85px;
    border-radius: 42px;
    padding: 0 35px;
  }

  #fichas-1 .info .docs {
    width: 610px;
    column-gap: 35px;
    row-gap: 42px;
    margin-top: 40px;
    margin-left: 17px;
  }

  #fichas-1 .info .doc {
    flex: 0 0 180px;
    width: 180px;
    height: 212px;
    border-radius: 23px;
  }

  #fichas-1 .info .doc .icon {
    width: 83px;
    height: 138px;
  }

  #contacto-1 {
    padding: 60px 0;
  }

  #contacto-1 .actions button {
    width: 162px;
    height: 54px;
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  #intro-3 .image {
    width: 304px;
    height: 420px;
  }

  #intro-3 .image-2 .box {
    width: 475px;
    top: 0;
    left: 100%;
  }
}

@media (max-width: 1170px) {
  #cliente-1 .logo {
    flex: 0 0 166px;
    width: 166px;
    height: 166px;
    border-radius: 18px;
  }

  #cliente-1 .testi .quote br {
    display: none;
  }
}

@media (max-width: 1130px) {
  #intro-3 .items {
    flex-wrap: wrap;
    justify-content: center;
  }

  #intro-3 .image-2 {
    display: contents;
  }

  #intro-3 .image-2 img {
    width: 304px;
    height: 420px;
  }

  #intro-3 .image-2 .box {
    position: static;
    width: 100%;
    flex: 1 1 100%;
    order: -1;
    margin-bottom: 30px;
  }

  #lProductos .submenu {
    width: 800px;
    height: 360px;
    padding: 20px 24px;
  }

  #lProductos .submenu > li {
    gap: 8px;
    padding: 10px;
  }

  #lProductos .catImg {
    flex: 0 0 40px;
    width: 40px;
    height: 60px;
  }

  #lProductos .catImg img {
    max-width: 26px;
    max-height: 46px;
  }

  #lProductos .submenu .catTitle {
    font-size: 11px;
  }

  #lProductos .submenu .prodPill {
    min-width: 0;
    height: auto;
    white-space: normal;
    padding: 3px 6px 3px 5px;
  }

  #lProductos .prodPill::before {
    flex: 0 0 11px;
    width: 11px;
    height: 14px;
  }

  #lProductos .prodPill span {
    font-size: 10px;
    line-height: 1.2;
  }

  #lProductos .submenu > li:nth-child(-n + 8)::before {
    width: 167px;
  }

  #lProductos .submenu > li:not(:nth-child(4n))::after {
    height: 73px;
    right: 12px;
  }

  #lProductos .submenu_f {
    gap: 4px 8px;
  }
}

@media (max-width: 1100px) {
  #intro-2 .box {
    height: 210px;
    padding: 0 45px;
  }

  #intro-2 .box .text {
    font-size: 20px;
  }

  #intro-4 .content .logos {
    gap: 20px;
  }

  #producto-1 .head .name {
    font-size: 24px;
  }

  #fichas-1 .info .docs {
    width: 519px;
    column-gap: 30px;
    row-gap: 36px;
    margin-top: 34px;
    margin-left: 14px;
  }

  #fichas-1 .info .doc {
    flex: 0 0 153px;
    width: 153px;
    height: 180px;
    border-radius: 20px;
  }

  #fichas-1 .info .doc .icon {
    width: 71px;
    height: 117px;
  }

  #fichas-1 .info .doc span {
    padding: 0 10px;
  }

  #fichas-1 .info .head {
    width: 555px;
  }
}

@media (max-width: 1000px) {
  #intro-1 .items {
    flex-wrap: wrap;
    justify-content: center;
  }

  #intro-1 .items .item {
    flex: 0 0 calc(50% - 15px);
  }

  #intro-2 .bg img {
    height: auto;
    min-height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }

  #intro-4 .content .logos .logo {
    border-radius: 35px;
  }

  #intro-4 .content .logos {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 40px;
  }

  #intro-4 .content .logos .logo {
    width: 214px;
    height: 169px;
  }

  #producto-1 .head {
    height: auto;
    padding: 18px 24px;
    border-radius: 24px;
  }

  #cliente-1 .head {
    height: 70px;
    border-radius: 34px;
  }

  #cliente-1 .head span {
    font-size: 32px;
  }

  #cliente-1 .logos {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  #cliente-1 .logo {
    flex: 0 0 133px;
    width: 133px;
    height: 133px;
    border-radius: 14px;
  }

  #cliente-1 .testi .container {
    padding-top: 39px;
  }

  #cliente-1 .testi .tag {
    width: 321px;
    height: 78px;
    border-radius: 39px;
  }

  #cliente-1 .testi .tag span {
    font-size: 32px;
  }

  #cliente-1 .testi .box {
    min-height: 194px;
    border-radius: 97px;
    padding: 42px 56px 32px;
  }

  #cliente-1 .testi .quote {
    font-size: 16px;
  }

  #cliente-1 .testi .author {
    font-size: 17px;
  }

  #producto-1 .head .name {
    font-size: 20px;
    margin-right: 5px;
  }

  #producto-1 .head .back img {
    width: 36px;
    height: 36px;
  }

  #producto-1 .content {
    flex-direction: column;
    align-items: center;
  }

  #producto-1 .info {
    align-self: flex-start;
    width: 100%;
  }

  #producto-1 .info .box {
    margin: 0 auto;
  }

  #producto-1 .info .row {
    margin: 0 auto;
  }

  #producto-1 .info .item p {
    width: 100%;
  }

  #fichas-1 .content {
    flex-direction: column;
    align-items: center;
  }

  #fichas-1 .sidebar {
    flex: 0 0 auto;
    width: 700px;
  }

  #fichas-1 .sidebar .title {
    width: 700px;
    height: 90px;
    border-radius: 45px;
  }

  #fichas-1 .sidebar .subtitle {
    width: 700px;
    height: 56px;
    border-radius: 27px;
    padding: 0 40px;
    gap: 10px;
  }

  #fichas-1 .sidebar .subtitle .icon {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
  }

  #fichas-1 .sidebar .subtitle .arrow {
    flex: 0 0 20px;
    width: 20px;
    height: 29px;
  }

  #fichas-1 .sidebar .subtitle.active .arrow {
    flex: 0 0 29px;
    width: 29px;
    height: 20px;
  }

  #fichas-1 .info .head {
    width: 700px;
    height: 90px;
    border-radius: 45px;
    padding: 0 40px;
  }

  #fichas-1 .info .docs {
    width: 700px;
    column-gap: 41px;
    row-gap: 48px;
    margin-top: 45px;
    margin-left: 0;
  }

  #fichas-1 .info .doc {
    flex: 0 0 206px;
    width: 206px;
    height: 243px;
    border-radius: 26px;
  }

  #fichas-1 .info .doc .icon {
    width: 95px;
    height: 158px;
  }

  #fichas-1 .info .doc span {
    padding: 0 12px;
  }

  #cliente-1 .row {
    padding: 40px 0;
  }

  #cliente-1 .row:first-child {
    padding: 0 0 40px;
  }

  #cliente-1 .testi {
    padding: 0
  }
}

@media (max-width: 890px) {
  body {
    margin: 0 0 36px 0 !important;
  }

  #header .container {
    display: none;
  }

  .rd-mobilepanel {
    display: block;
  }

  .rd-mobilemenu {
    display: block;
  }

  .rd-mobile-social-bar {
    display: flex;
  }

  #header .hero {
    aspect-ratio: unset;
    height: 404px;
    margin-top: 60px;
  }

  #header .hero .content .title {
    font-size: 30px;
  }

  #header .hero .content .text {
    font-size: 21px;
  }

  #header .hero .content {
    transform: translateY(-50%);
  }

  /* #chatbase-bubble-button,
  #chatbase-bubble-window {
    transform: translateY(-50px);
  } */
}

@media (max-width: 767px) {
  .footer-left p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-separator {
    display: none;
  }

  #intro-1 {
    padding: 60px 0;
  }

  #intro-1 .top {
    margin-bottom: 30px;
  }

  #intro-2 .box .text {
    font-size: 16px;
  }

  #intro-2 .box {
    padding: 0 20px;
  }

  #intro-3 {
    padding: 40px 0;
  }

  #intro-3 .image-2 .box .text {
    font-size: 18px;
  }

  #intro-3 .image-2 .box {
    margin-bottom: 0;
    padding: 0;
  }

  #intro-4 .bg {
    padding: 60px 0;
  }

  #intro-4 .content .title {
    font-size: 30px;
  }

  #intro-4 .content .subtitle {
    font-size: 18px;
  }

  #intro-4 .content .arrow {
    width: 32px;
    height: 32px;
  }

  #intro-4 {
    padding: 10px 0 60px;
  }

  #intro-4 .content .logos .logo,
  #intro-4 .bg {
    border-radius: 25px;
  }

  #producto-1 {
    padding: 60px 0;
  }

  #producto-1 .image {
    border-radius: 35px;
  }

  #fichas-1 .sidebar {
    width: 100%;
  }

  #fichas-1 .sidebar .title {
    width: 100%;
    height: 64px;
    border-radius: 32px;
    font-size: 26px;
  }

  #fichas-1 .sidebar .subtitle {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    padding: 0 22px;
    gap: 8px;
  }

  #fichas-1 .sidebar .subtitle span {
    font-size: 17px;
  }

  #fichas-1 .sidebar .subtitle .icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }

  #fichas-1 .sidebar .subtitle .arrow {
    flex: 0 0 15px;
    width: 15px;
    height: 22px;
  }

  #fichas-1 .sidebar .subtitle.active .arrow {
    flex: 0 0 22px;
    width: 22px;
    height: 15px;
  }

  #fichas-1 .sidebar .list {
    padding: 0 10px 0 24px;
  }

  #fichas-1 .sidebar .list li span {
    font-size: 16px;
  }

  #fichas-1 .info {
    width: 100%;
  }

  #fichas-1 .info .head {
    width: 100%;
    height: 64px;
    border-radius: 32px;
    padding: 0 24px;
  }

  #fichas-1 .info .head span {
    font-size: 24px;
  }

  #fichas-1 .info .docs {
    width: 100%;
    margin-left: 0;
    column-gap: 20px;
    row-gap: 24px;
  }

  #fichas-1 .info .doc {
    flex: 1 1 calc(33.333% - 14px);
    width: auto;
    max-width: calc(33.333% - 14px);
    height: auto;
    aspect-ratio: 206 / 243;
    border-radius: 18px;
  }

  #fichas-1 .info .doc a {
    gap: 8px;
  }

  #fichas-1 .info .doc .icon {
    width: 45%;
    height: auto;
  }

  #fichas-1 .info .doc span {
    font-size: 13px;
  }

  #cliente-1,
  #fichas-1 {
    padding: 60px 0;
  }

  #cliente-1 .testi .container {
    padding-top: 30px;
  }

  #cliente-1 .testi .tag {
    width: 80%;
    max-width: 260px;
    height: 60px;
    border-radius: 30px;
  }

  #cliente-1 .testi .tag span {
    font-size: 22px;
  }

  #cliente-1 .testi .box {
    width: 100%;
    min-height: auto;
    border-radius: 40px;
    padding: 30px 24px 22px;
  }

  #cliente-1 .testi .quote {
    font-size: 14px;
  }

  #cliente-1 .testi .author {
    font-size: 15px;
  }

  #cliente-1 .text {
    font-size: 16px;
  }

  #contacto-1 .row {
    flex-direction: column;
  }

  #contacto-1 .subtitle {
    margin-top: 20px;
    font-size: 16px;
  }

  #contacto-1 .title {
    font-size: 35px;
  }
}

@media (max-width: 700px) {
  #intro-3 .image {
    width: 213px;
    height: 294px;
  }

  #intro-3 .image-2 img {
    width: 213px;
    height: 294px;
  }
}

@media (max-width: 576px) {
  #intro-1 .items {
    flex-direction: column;
  }

  #intro-1 .items .item {
    flex: 1 1 100%;
  }

  #intro-1 .top {
    flex-direction: column;
  }

  #intro-1 .items .item .image img {
    width: 70%;
    margin: 0 auto;
  }

  #intro-2 .box {
    border-radius: 40px;
  }

  #intro-4 .content .logos {
    gap: 20px;
  }

  #intro-4 .content .logos .logo {
    width: 150px;
    height: 118px;
  }

  #intro-4 .content .logos .logo:last-child img {
    width: 94px;
    height: 93px;
  }

  #intro-4 .content .title {
    font-size: 25px;
  }

  #intro-4 .content .subtitle {
    font-size: 16px;
  }

  #fichas-1 .info .doc {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  #cliente-1 .head span {
    font-size: 25px;
  }

  #contacto-1 .actions button {
    width: 122px;
    height: 41px;
    font-size: 13px;
  }

  #contacto-1 .actions,
  #contacto-1 .captcha {
    margin-top: 30px;
  }
}

@media (max-width: 530px) {
  #producto-1 .info .box {
    width: 100%;
  }

  #producto-1 .info .row {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 16px 24px;
    gap: 10px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  #intro-2 .bg img {
    min-height: 340px;
  }

  #intro-2 .box {
    height: 275px;
  }

  #intro-4 .content .logos {
    grid-template-columns: repeat(1, auto);
  }

  #producto-1 .info .box span {
    font-size: 18px;
  }

  #producto-1 .image {
    flex: 0 0 277px;
    width: 277px;
    height: 325px;
  }
}
