/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Colores */
:root {
  --drapp-azul: #00629b;
  --drapp-azul-claro: #d4e7fb;
  --drapp-celeste: #00a9e0;
  --negro: #373737;
  --blanco: #ffffff;
  --no-blanco: #f8f9fa;
  --negro-texto: #555555;
  --mensaje-correcto: #2e7d32;
}

/* Content */

.content {
  margin: 0px 24px 56px 24px;
}

.main-content {
  margin-top: 58px;
  max-width: 100%;
  background-color: var(--blanco);
}

.hidden-mobile {
  display: none;
}

/* Navbar Registrar */

.header__registrar {
  background-color: var(--blanco);
  display: flex;
  height: 56px;
  padding: 40px 32px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1000;
}

/* NAVBAR */
/* Menú mobile (hamburguesa) visible por defecto */
.navbar-mobile {
  position: fixed;
  width: 100%;
  top: 0px;
  background-color: var(--blanco);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar__menu {
  display: none;
  position: fixed;
  top: 64px;
  margin-top: -8px;
  left: 0;
  width: 100%;
  background-color: var(--blanco);
  justify-content: center;
  padding: 32px;
}

.navbar__logo img {
  width: 84px;
}

.navbar__menu.active {
  display: flex;
  flex-direction: column;
}

.navbar__icons {
  display: flex;
  gap: 16px;
}

.navbar__icons .icon {
  color: var(--negro);
}

#hamburger-menu {
  cursor: pointer;
  font-size: 24px;
}

.navbar__icons .icon {
  font-size: 24px;
  cursor: pointer;
}

.navbar__menu a {
  margin: 16px 0px;
  text-decoration: none;
  font-size: 16px;
}

.navbar__link--selected {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px;
  font-weight: 800;
  color: var(--drapp-azul);
}

/* Ocultar el menú de escritorio en mobile */
.navbar {
  display: none;
}

/* Textos */

body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background-color: var(--blanco);
  color: var(--negro-texto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.body-bold {
  font-weight: 600;
}

.body-light {
  font-weight: 200;
}

.h1__title {
  color: var(--drapp-azul);
  margin-bottom: 8px;
  line-height: 34px;
  font-family: nunito;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.h1__title-light {
  font-weight: 300;
}

.h1__title--highlight {
  color: var(--drapp-celeste);
}

.h2__title {
  color: var(--drapp-azul);
  text-transform: uppercase;
  font-family: nunito;
  font-size: 24px;
  font-weight: 900;
  line-height: 32px;
}

.h2__title-light {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--drapp-azul);
}

.h3__title {
  font-size: 20px;
  font-family: nunito;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--drapp-azul);
}

h4 {
  color: var(--drapp-azul);
}

.text-big {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.titulo-card {
  color: var(--drapp-azul);
  text-transform: uppercase;
  font-weight: 800;
  text-align: left;
}

.subtitulo {
  color: var(--drapp-azul);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 2px;
}

.caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.4px;
}

.caption-small {
  font-size: 8px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.4px;
}

.listado__content {
  margin-left: 16px;
}

/* Iconos */

.icon {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  color: var(--drapp-azul);
  display: flex;
}

.icon-bg {
  background: var(--no-blanco);
  padding: 16px;
  border-radius: 16px;
  justify-content: center;
  display: flex;
  margin-right: 8px;
}

/* Detalles */

.shadow01 {
  box-shadow: 0px 8px 24px 0px rgba(37, 59, 170, 0.15);
}

.corner {
  border-radius: 8px;
}

a {
  color: var(--negro-texto);
}

/* Botones */

.btn__navbar {
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 32px;
  width: 176px;
}

.btn {
  width: 272px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 32px;
  font-family: nunito;
  font-weight: 900;
}

.btn--primary {
  background: var(--drapp-azul);
  color: var(--no-blanco);
}

.btn--primary:hover {
  background-color: #155482;
}

.btn--secondary {
  border: 2px solid var(--drapp-azul);
  background: var(--blanco);
  color: var(--drapp-azul);
}

.btn--secondary:hover {
  background-color: #f4f4f4;
}

.btn--terceary {
  color: var(--drapp-azul);
}

.btn--terceary:hover {
  color: #0056b3;
}

/* Hero */

.hero {
  margin: auto;
  gap: 16px;
  align-items: center;
}

.hero .content {
  margin-top: 120px;
}

.hero__image {
  text-align: center;
}

.hero__image img {
  width: 100%;
  max-width: 400px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
}

.hero__ctas a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.badges {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  margin: 24px 0px;
}

.badges img {
  width: 100%;
}

/* Funcionalidades */

#funcionalidades {
  background-color: var(--drapp-azul-claro);
  padding: 56px 0px 40px 0px;
}

.func__card-title {
  display: flex;
  gap: 8px;
  align-items: center;
}

.func__card {
  margin: 16px 0px 16px 0px;
}

.func__cards {
  margin-bottom: 16px;
}

.card {
  background-color: var(--blanco);
  display: flex;
  width: 256px;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  width: 100%;
}

#funcionalidades .content a {
  margin: auto;
}

/* Features */

.feature__gif img {
  width: 100%;
}

.feature__titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.feature__items {
  margin-top: 16px;
}

.feature__item {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.features .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.feature {
  margin-top: 56px;
}

/* Confian */

.confian {
  background-color: var(--drapp-azul-claro);
  padding: 32px 0px;
  overflow: hidden; /* Ocultamos el desborde */
}

.confian .h2__title-light {
  margin-left: 24px;
}

.confian__listado {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 24px; /* Aumentamos el espacio entre logos */
  padding: 0px 24px;
  position: relative;
  width: auto; /* Set width to auto or a larger value */
  animation: scroll 90s linear infinite;
}

.confian__listado > .confian__logos {
  display: flex;
  gap: 24px; /* Aumentamos el espacio entre logos */
}

.confian__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}

.confian__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Estilos para Desktop */
@media (min-width: 1024px) {
  .confian__logo {
    width: 140px; /* Logos más grandes */
    height: 140px;
  }

  .confian__listado {
    animation-duration: 70s; /* Más lento en pantallas grandes */
  }
}

/* Estilos para DesktopWide */
@media (min-width: 1206px) {
  .confian__listado {
    animation-duration: 20s; /* Más lento en pantallas grandes */
  }
}

/* Animación de scroll infinito */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Pestaña Registrar */

.registrar .text-big {
  color: var(--drapp-azul);
}

.registrar {
  text-align: center;
}

.registrar__card {
  display: flex;
  padding: 24px 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  justify-content: center;
  color: var(--drapp-azul);
  background-color: #fff;
  border-radius: 16px;
}

.registrar__card-title .icon {
  font-size: 80px;
  line-height: 104px;
  display: block;
}

.registrar__card .btn {
  width: 224px;
}

.registrar__paciente {
  color: var(--drapp-celeste);
}

.registrar__paciente-btn {
  background-color: var(--drapp-celeste);
}

.registrar__paciente-btn:hover {
  background-color: #068db9;
}

.registrar__cards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.registrar__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Testimonios */

.testimonios {
  padding: 40px 0px 40px 0px;
}

.testimonios .titles {
  margin: 48px 24px 0px 24px;
}

.testimonios__cards {
  display: flex;
  align-items: stretch;
  gap: 24px;
  overflow-x: scroll;
  display: flex;
  scroll-behavior: smooth;
  padding: 24px;
  -ms-overflow-style: none; /* Oculta la barra en IE y Edge */
  scrollbar-width: none; /* Oculta la barra en Firefox */
}

.testimonios__card {
  width: 252px;
  padding: 24px 16px;
  flex-shrink: 0;
}

.testimonio__profesional {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.testimonios a {
  margin: auto;
}

/* Por que */

.porque {
  background-color: var(--drapp-celeste);
  text-align: center;
  color: var(--blanco);
  padding: 88px 24px 112px 24px;
}

.porque .h2__title {
  color: var(--blanco);
}

.porque p {
  margin-top: 8px;
}

.porque__item {
  margin-top: 32px;
}

.porque__items {
  margin-top: 64px;
  gap: 32px;
}

.porque__icon {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  color: var(--blanco);
}

.porque__icon-bg {
  background-color: #2fb7e6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 16px 18px;
  width: 56px;
  height: 56px;
  margin: auto;
}

/* App */

.app {
  background-color: var(--drapp-azul-claro);
}

.app .content {
  padding: 56px 0px;
  margin-bottom: 0px;
}

.app .content .titles {
  text-align: center;
}

.app__items {
  margin: 48px 0px;
}

.app__item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  color: var(--drapp-azul);
  margin-bottom: 8px;
}

.app__item {
  margin: 24px 0px;
}

.app__item p {
  text-align: center;
}

.app__descargas {
  text-align: center;
  margin-top: 64px;
  justify-content: center;
}

.app img {
  max-width: 100%;
}

.app__descargas .badges {
  margin: auto;
  margin-top: 24px;
  justify-content: center;
}

/* DrApp */

.drapp {
  background-color: var(--no-blanco);
  padding: 48px 0px;
}

.drapp .h2__title,
.drapp__beneficios .h2__title {
  font-family: "Nunito", sans serif;
  font-weight: 800;
  color: var(--drapp-azul);
}

.drapp p,
.drapp__beneficios p {
  font-family: roboto;
}

.drapp__benefit-title {
  text-transform: uppercase;
  font-family: roboto;
  letter-spacing: 1.4px;
}

.drapp__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0px;
  color: var(--negro-texto);
}

.drapp__benefit .icon {
  color: var(--negro-texto);
}

.drapp__benefits {
  margin: 24px 0px;
  gap: 8px;
}

.drapp__texto a {
  font-family: "Nunito", sans serif;
  color: var(--drapp-azul);
  font-weight: 800;
  border-color: var(--drapp-azul);
}

.drapp__card .btn--terceary {
  display: flex;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 0px;
  justify-content: center;
}

.drapp__card a {
  font-family: "Nunito", sans serif;
  font-weight: 800;
  color: var(--drapp-azul);
}

.drapp__card a .icon {
  color: var(--drapp-azul);
}

.drapp__card {
  background-color: #f2f8fe;
  padding: 32px 16px;
  margin: auto;
  text-align: center;
}

.drapp__texto {
  margin-bottom: 40px;
}

.drapp__card img {
  width: 195px;
}

.drapp__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.drapp__feature img {
  max-width: 100%;
}

/* Pricing Simulator */

.pricing-simulator {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-only {
  display: flex; /* Se verá en mobile */
}
.desktop-only {
  display: none; /* Oculto en mobile */
}

/* Selector (solo mobile) */
.professionals-selector {
  text-align: center;
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.professionals-selector h3 {
  margin: 0;
}
.selector-buttons {
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 16px;
  stroke: var(--negro-texto);
  margin-bottom: 24px;
  border: 1px solid grey;
  padding: 8px 24px;
  width: 132px;
}
.button-decrease,
.button-increase {
  border: none;
  background-color: transparent;
  font-size: 20px;
  color: var(--negro-texto);
  cursor: pointer;
}
.professionals-count {
  font-size: 20px;
}

/* Slider (solo desktop) */
.slider-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.professionals-slider {
  width: 100%;
  margin: 16px 0;
  -webkit-appearance: none;
  background: transparent;
}
.professionals-slider::-webkit-slider-runnable-track {
  height: 6px;
  background: #e5e5e5;
  border-radius: 3px;
}
.professionals-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #0066ff;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px;
}
.professionals-slider::-webkit-slider-thumb:hover {
  background: #0052cc;
}
.professionals-slider::-moz-range-track {
  height: 6px;
  background: #e5e5e5;
  border-radius: 3px;
}
.professionals-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #0066ff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.professionals-slider::-moz-range-thumb:hover {
  background: #0052cc;
}
.professionals-slider::-ms-track {
  height: 6px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.professionals-slider::-ms-fill-lower {
  background: #e5e5e5;
}
.professionals-slider::-ms-fill-upper {
  background: #e5e5e5;
}
.professionals-slider::-ms-thumb {
  width: 16px;
  height: 16px;
  background: #0066ff;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 0;
}
.professionals-slider {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.professionals-slider {
  border-width: 0px;
}

.pricing__card {
  padding: 32px 24px;
  background-color: var(--blanco);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing__card--header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.toggle-container {
  display: flex;
  background-color: var(--no-blanco);
  text-align: center;
  border-radius: 16px;
}
.toggle-button {
  display: flex;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  stroke: none;
  width: 100%;
  line-height: 1.5;
  border: none;
  background-color: transparent;
  color: var(--drapp-azul);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.toggle-button:hover {
  background-color: #f7f7f7;
}
.toggle--active {
  font-weight: 600;
  background-color: var(--blanco);
  box-shadow: 0px 8px 24px 0px rgba(37, 59, 170, 0.15);
  border-radius: 16px;
}

.price-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
}
.original-price {
  text-decoration: line-through;
  text-align: center;
  flex: 1;
  visibility: hidden;
  margin: 0;
}
.discount-badge {
  background-color: #eaf2eb;
  padding: 8px 16px;
  color: var(--mensaje-correcto);
  text-align: center;
  border-radius: 8px;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  min-width: 80px;
  visibility: visible;
  margin: 0;
  min-height: 20px;
  min-width: 80px;
}

.pricing__columna {
  margin-top: 8px;
}

.placeholder-badge {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  min-height: 24px !important;
  text-align: center !important;
}

.pricing__card--price {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.current__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.current-price {
  margin: auto;
}

.iva {
  text-align: center;
}

.features-highlight {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  justify-content: flex-start;
  margin: 24px 0;
}
.feature__item {
  display: flex;
  align-items: start;
}
.features-highlight .icon {
  background: #fff;
  color: var(--negro-texto);
  font-weight: bold;
}

.btn__pricing {
  width: 100%;
  margin-top: 16px;
  background-color: var(--drapp-azul);
  color: #fff;
}

.total-price {
  font-style: italic;
  text-align: center;
  line-height: 3;
}

.subscription-features h3 {
  margin-top: 32px;
}
.subscription-features ul li {
  margin-left: 16px;
  margin-top: 4px;
}

/* ===============================
     ESTILOS PARA LA LÓGICA ANUAL vs MENSUAL
     =============================== */

/* --- Versión ANUAL --- */
.pricing__card.annual .toggle-button.annual {
  color: var(--drapp-celeste);
}

/* Color principal en la sección de precios */
.pricing__card.annual .price-header,
.pricing__card.annual .pricing__card--price,
.pricing__card.annual .current__price .h1__title,
.pricing__card.annual .total-price,
.pricing__card.annual .iva,
.pricing__card.annual .original-price {
  color: var(--drapp-celeste);
}

/* Fondo del CTA en versión anual */
.pricing__card.annual .btn__pricing {
  background-color: var(--drapp-celeste);
  color: #fff;
}

/* --- Versión MENSUAL --- */
.pricing__card.monthly .toggle-button.monthly {
  color: var(--drapp-azul);
}

.pricing__card.monthly .price-header,
.pricing__card.monthly .pricing__card--price,
.pricing__card.monthly .current__price,
.pricing__card.monthly .total-price,
.pricing__card.monthly .iva,
.pricing__card.monthly .original-price {
  color: var(--drapp-azul);
}

/* Fondo del CTA en versión mensual */
.pricing__card.monthly .btn__pricing {
  background-color: var(--drapp-azul);
  color: #fff;
}

/* Footer */

.footer__rrss-icon a {
  color: var(--negro-texto);
  font-size: 24px;
}

.footer__rrss {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: auto;
  padding: 80px 0px 24px 0px;
}

.footer__links .badges {
  justify-content: center;
}

.footer__sello {
  margin-top: 40px;
}

.footer__sello p .caption {
  color: var(--negro-texto);
  margin-bottom: 8px;
  font-weight: 200;
}

hr {
  border: 0;
  height: 2px;
  background-color: var(--no-blanco);
  margin-top: 4px;
}

.footer__sello-img {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 8px; 
}

.footer__sello-img-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__sello-img-logo img {
  height: 28px;
  margin-top: 16px;
}

.footer__datos-logo img {
  width: 220px;
  margin-bottom: 16px;
}

.footer__datos {
  color: var(--negro-texto);
  text-align: center;
  margin: 64px 0px;
}

.footer__datos p {
  margin: 8px 0px;
  font-weight: 200;
  line-height: 1, 4px;
}

.footer__sello p {
  text-align: center;
}

.footer__politicas {
  text-align: center;
}

.footer__politicas a {
  margin: 8px;
}

/* Faqs */

.faqs__intro {
  background-color: var(--no-blanco);
  padding: 64px 0px 40px 0px;
}

.faqs__titles .icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.faqs__title {
  text-transform: uppercase;
  color: var(--drapp-azul);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.4px;
  margin-top: 40px;
  margin-bottom: 8px;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--no-blanco);
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 800;
  font-size: 18px;
  color: var(--negro-texto);
  background-color: var(--blanco);
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Nunito";
}

.accordion-button .icon {
  color: var(--negro-texto);
}

.accordion-button:hover {
  background-color: var(--no-blanco);
}

.accordion-content {
  display: none;
  padding: 16px;
}

.accordion-content p {
  margin: 0;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Contacto */

.contacto__intro {
  background-color: var(--blanco);
  padding: 64px 0px 0px 0px;
}

.contacto img {
  width: 78px;
  height: auto;
  margin-bottom: 16px;
}

.contacto .footer__rrss {
  justify-content: start;
}

.contacto .faqs__content {
  margin-top: 56px;
}

.contactate {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contactate__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faqs__content .btn--terceary {
  display: flex;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0px;
  justify-content: end;
  margin-top: 16px;
}

/* Precio */

.precio__intro {
  padding: 80px 0px 24px 0px;
}

.precio__titles {
  margin-bottom: 16px;
}

.precio__soluciones {
  display: flex;
  padding: 32px 32px 32px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: var(--blanco);
  margin-top: 32px;
  margin-bottom: 72px;
}

.precio__soluciones .btn--secondary {
  width: 100%;
}

.precio__detalles {
  margin-top: 32px;
}

.precio__detalle-columnas {
  margin-top: 8px;
}

/* Formulario HubSpot */

.drapp__contacto {
  background-color: var(--no-blanco);
}

.drapp__contacto-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.hs-button {
  width: 100%;
  background-color: var(--drapp-azul);
  color: var(--blanco);
  border-width: 0px;
  height: 36px;
  border-radius: 16px;
  font-family: nunito;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  height: 40px;
}

input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--drapp-azul-claro);
  height: 36px;
  border-radius: 16px;
  font-family: nunito;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 4px;
}

textarea {
  width: 100%;
  background-color: var(--blanco);
  border: 1px solid var(--drapp-azul-claro);
  height: 128px;
  border-radius: 16px;
  font-family: nunito;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 16px;
  margin-top: 4px;
}

.field {
  position: relative;
}

.field input {
  width: 100%;
  padding: 20px;
  color: var(--negro-texto);
}

.field label {
  color: var(--drapp-azul);
  transition: 0.2s;
  pointer-events: none;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

/* Desktop: A partir de 1024px */
@media (min-width: 1024px) {
  .main-content {
    margin: 0px auto;
  }

  .content {
    margin: auto;
    max-width: 944px;
    padding: 40px 0px 40px 0px;
  }

  /* Ocultar el menú mobile */
  .navbar-mobile {
    display: none;
  }

  /* Mostrar el menú de escritorio original */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--blanco);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
  }

  .navbar__menu {
    position: relative;
    top: 0px;
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 0 auto;
    padding: 0px;
  }

  .navbar__link {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px;
  }

  .navbar__cta {
    display: flex;
    gap: 8px;
  }

  .navbar__logo img {
    width: 120px;
  }

  .hero .content {
    display: flex;
    align-items: center;
  }

  .hero__ctas {
    width: 332px;
  }

  .hero__image img {
    width: 392px;
    max-width: 392px;
  }

  .hidden-mobile {
    display: block;
  }

  .h1__title {
    line-height: 64px;
    font-size: 48px;
  }

  .h2__title {
    font-size: 40px;
    line-height: 48px;
  }

  .h3__title {
    font-size: 24px;
    line-height: 32px;
  }

  .func__card-title {
    display: block;
  }

  .func__card-title .icon {
    font-size: 56px;
    line-height: 72px;
  }

  .cardL {
    height: 360px;
  }

  .cardS {
    height: 300px;
  }

  .func__cards {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .func__cards-column {
    width: 100%;
  }

  .feature {
    display: flex;
    justify-content: left;
    gap: 24px;
    align-items: center;
    margin-top: 56px;
  }

  /* Alternar el orden en los items pares */
  .feature:nth-child(even) {
    flex-direction: row-reverse; /* Imagen a la derecha, texto a la izquierda */
  }

  .feature__gif img {
    width: 460px;
    margin-bottom: 0; /* Eliminar el margen inferior en desktop */
  }

  .confian .h2__title-light {
    margin: auto;
    max-width: 944px;
  }

  .confian__listado {
    padding: 0px 56px 0px 56px;
  }

  .testimonios__cards {
    display: flex;
    margin: auto;
    max-width: 944px;
    justify-content: center;
  }

  .testimonios__card {
    align-self: stretch;
    flex: 1 0 0;
  }

  .testimonios {
    margin: 56px 0px 64px 0px;
  }

  .testimonios .titles {
    margin: auto;
    max-width: 944px;
  }

  .registrar__cards {
    display: flex;
    flex-direction: row;
    width: 800px;
    margin: auto;
    margin-top: 40px;
  }

  .registrar__card {
    flex: 1 1;
    justify-content: space-between;
  }

  .registrar__card .btn--primary {
    width: 100%;
    margin-bottom: 0px;
  }

  .registrar__card-content {
    gap: 16px;
  }

  .contactate {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: start;
  }

  .precio__intro {
    padding: 140px 0px 0px 0px;
  }

  .precio__detalle-columnas {
    display: flex;
    gap: 16px;
    align-self: stretch;
    align-items: flex-start;
    justify-content: space-between;
  }

  .precio__detalle-columnas ul {
    margin-left: 16px;
  }

  .pricing-simulator {
    max-width: 944px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }

  .professionals-selector {
    margin-top: 40px;
  }

  .professionals-selector {
    text-align: center;
    display: flex;
    gap: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .professionals-selector {
    width: 100%;
  }

  .pricing__card {
    width: 100%;
    margin-top: 40px;
  }

  .mobile-only {
    display: none; /* Oculto en desktop */
  }

  .desktop-only {
    display: block; /* Visible en desktop */
  }

  .pricing__card--pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .pricing__columna {
    width: 352px;
  }

  .discount-badge {
    max-width: 102px;
  }

  .subscription-features ul {
    -webkit-columns: 2; /* Soporte en navegadores Webkit */
    -moz-columns: 2; /* Soporte en Firefox antiguo */
    columns: 2; /* Versión estándar */
    column-gap: 2rem; /* Espacio horizontal entre columnas */
    margin-top: 16px;
  }

  .precio__soluciones .btn--secondary {
    width: 200px;
  }

  .porque__items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .porque__item {
    flex: 1;
  }

  .porque div .h2__title {
    margin-top: 16px;
  }

  .app .content {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .app .content .hidden-mobile img {
    width: 448px;
  }

  .hero__ctas .badges {
    width: 276px;
    justify-content: space-between;
  }

  .hidden-desktop {
    display: none;
  }

  .drapp__contacto-content {
    display: flex;
  }

  .drapp__contacto-content {
    flex-direction: row;
  }

  .drapp__contacto-texto,
  .drapp__form,
  .contactate__content {
    flex: 1; /* Esto hace que cada columna ocupe el mismo espacio */
    box-sizing: border-box; /* Asegúrate de que el padding no sume al ancho total */
  }

  .footer__rrss {
    margin: auto 0;
  }

  .footer__links {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }

  .footer__sellos {
    display: flex;
    gap: 32px;
    margin-top: 0px;
  }

  .footer__sello {
    flex: 1 0 0;
  }

  .footer__politicas {
    display: flex;
    justify-content: center;
  }

  .footer__sello-img-logo img {
    height: 40px;
  }

  .faqs__intro {
    padding: 180px 0px 80px 0px;
  }

  .faqs__titles-h1 {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .contacto__intro {
    padding: 188px 0px 0px 0px;
  }

  .contacto__titles img {
    width: 180px;
  }

  .contacto__titles {
    display: flex;
    gap: 48px;
  }
}

/* Desktop-wide: A partir de 1440px */
@media (min-width: 1206px) {
  .content {
    margin: auto;
    max-width: 1145px;
  }

  .h1__title {
    line-height: 64px;
    font-size: 52px;
  }

  .h2__title {
    line-height: 54px;
    font-size: 44px;
  }

  .h3__title {
    font-size: 28px;
    line-height: 32px;
  }

  .hero__image img {
    max-width: 542px;
    width: 542px;
  }

  .cardL {
    height: 400px;
  }

  .cardS {
    height: 280px;
  }

  .confian .h2__title-light {
    margin: auto;
    max-width: 1100px;
    margin-top: 40px;
    margin-bottom: 24px;
  }

  .confian__listado {
    max-width: 1100px;
    padding: 0;
    overflow-x: visible;
    margin: auto;
    margin-bottom: 40px;
  }

  .testimonios__cards {
    max-width: 1100px;
    padding: 0;
    overflow-x: visible;
    margin: auto;
    margin-bottom: 40px;
  }

  .testimonios .titles {
    margin: auto;
    max-width: 1100px;
    margin-top: 40px;
    margin-bottom: 24px;
  }

  .pricing-simulator {
    max-width: 1145px;
  }
}

.footer__sello-img-logo-iso{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__sello-img-logo-iso img {
  max-width: 180px;
  margin-bottom: 32px;
}