/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Colores */
:root {
  --receto-primario: #3555f3;
  --receto-primario-hover: #0056b3;
  --receto-blanco: #ebeefe;
  --negro: #373737;
  --blanco: #ffffff;
  --no-blanco: #f8f9fa;
  --negro-texto: #555555;
  --drapp-azul: #00629b;
  --drapp-azul-claro: #d4e7fb;
  --drapp-celeste: #00a9e0;
}

/* Content */

.content {
  margin: 48px 24px 56px 24px;
}

.main-content {
  margin-top: 58px;
  max-width: 100%;
  background-color: var(--blanco);
}

.hidden-mobile {
  display: none;
}

/* 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 {
  font-weight: 800;
  color: var(--receto-primario);
}

/* Ocultar el menú de escritorio en mobile */
.navbar {
  display: none;
}

/* Textos */

body {
  font-family: "Overpass", 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(--negro);
  margin-bottom: 8px;
  line-height: 34px;
  font-size: 36px;
  font-weight: 700;
  width: 70%;
}

.title-testimonies{
  color: var(--receto-primario);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 36px;
  width: 70%;
  font-size: 28px;
}

.h1__title--highlight {
  color: var(--receto-primario);
}

.h2__title {
  color: var(--receto-primario);
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
}

.h2__title__porque{
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
}

.porque__item-text {
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 16px;
}

.h2__title--testimonies {
  color: var(--receto-primario);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.h2__title__mercadoPago {
  color: var(--receto-primario);
  text-transform: uppercase;
  font-size: 31px;
  font-weight: 700;
  line-height: 35px;
  /* margin: 0px 20px; */
}

.h2__title__register{
  text-align: left;
}

.icon_register{
  width: 100%;
  display: flex;
  justify-content: left;
}

.text-big {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
}

.titulo-card {
  color: var(--receto-primario);
  text-transform: uppercase;
  font-weight: 800;
  text-align: left;
}

.subtitulo {
  color: var(--receto-primario);
  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;
}

.listado__content {
  padding-left: 24px;
  margin: 0;
}

/* Iconos */

.icon {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  color: var(--receto-primario);
  display: flex;
}

.icon-bg {
  background: var(--receto-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;
}

.btn--primary {
  background: var(--receto-primario);
  color: var(--receto-blanco);
}

.btn--primary:hover {
  background-color: #0056b3;
}

.btn--secondary {
  border: 2px solid var(--receto-primario);
  background: var(--blanco);
  color: var(--receto-primario);
}

.btn--secondary:hover {
  background-color: #f0f0f0;
}

.btn--secondary--transparent {
  border: 2px solid var(--receto-primario);
  color: var(--receto-primario);
}

.btn--secondary--transparent:hover {
  border: 2px solid var(--receto-primario-hover);
}

.btn--terceary {
  color: var(--receto-primario);
}

.btn--terceary:hover {
  color: #0056b3;
}

/* Hero */

.hero {
  margin: auto;
  gap: 16px;
  align-items: flex-start;
}

.hero .content {
  margin-top: 96px;
}

.hero__features {
  margin-top: 24px;
  margin-bottom: 24px;
}

.hero__feature {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.hero__icon-bg {
  background: var(--receto-blanco);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 16px 18px;
}

.hero__icon {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  color: var(--receto-primario);
}

.hero__icon-text {
  font-size: 19px;
  color: var(--negro-texto);
}

.hero__image img {
  width: 542px;
}

.hero__ctas {
  margin-top: 40px;
  width: 100%;
}

.hero__cta{
  width: 100%;
}

.hero__cta--register{
  width: 80%;
}

.badges {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 70px;
  align-items: center;
  gap: 12px;
  margin: 24px 0px;
}

.badges img {
  width: 100%;
  height: auto;
  /* max-height: 56px; */
}

/* Benefits */

.benefits {
  margin: auto;
  gap: 16px;
  align-items: center;
  display: flex;
  background-color: var(--receto-blanco);
  overflow: hidden;
}

.benefits__cards {
  margin-top: 24px;
}

.benefits__card {
  margin-bottom: 16px;
  padding: 24px 16px;
  background-color: var(--blanco);
}

.benefits__card-titles {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.benefits__card-title {
  color: var(--receto-primario);
  text-transform: uppercase;
  font-weight: 800;
  text-align: left;
}

/* Registrate */

.registrate {
  background-color: var(--receto-primario);
  margin: 0 auto;
  color: var(--blanco);
  padding: 48px 24px;
}

.registrate__content {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: auto;
}

.registrate__title-mobile {
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  width: 100%;
  margin-bottom: 8px;
}

.registrate__pasos {
  margin: 0;
  text-align: left;
  width: 100%;
}

.icon_register{
  width: 100%;
}

.registrate__paso {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.registrate__paso .icon {
  color: var(--blanco);
  background-color: transparent;
  /* border: 2px solid var(--blanco); */
  border-radius: 4px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}

.registrate__btn{
  width: 100%;
}

.registrate__paso p {
  color: var(--blanco);
  margin: 0;
  width: 100%;
  font-size: 22px;
  line-height: 26px;
  text-align: left;
}

.registrate .content .h2__title {
  color: var(--blanco);
}

.registrate img {
  display: block;
  margin: 20px 0 -90px -25px;
  width: 360px;
  /* padding: 32px 0 0 0; */
}

/* Testimonios */

.testimonios {
  margin: 40px 0px 0px 0px;
  padding-bottom: 40px;
}

.testimonios .titles {
  margin: 48px 24px 0px 24px;
}

.testimonios__cards {
  display: flex;
  align-items: flex-start;
  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;
  height: 280px;
}

.testimonio__profesional {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.testimonios a {
  margin: auto;
}

/* Solicitud */

.solicitud {
  background-color: var(--receto-blanco);
  padding: 32px 0;
  text-align: center;
}

.solicitud__intro {
  margin-bottom: 32px;
  text-align: right;
}

.solicitud__intro .text-big {
  margin-top: 8px;
}

.solicitud img {
  max-width: 100%;
}

.solicitud .hidden-desktop {
  text-align: left;
}

.solicitud .hidden-desktop img {
  max-width: 100%;
}

/* Mobile: Imagen más grande y cortada a la izquierda */
@media (max-width: 1023px) {
  .solicitud .hidden-desktop {
    margin-left: -50px;
    overflow: visible;
  }

  .solicitud .hidden-desktop img {
    max-width: none;
    width: 360px;
    height: auto;
  }

  .icon_register {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
  }
}

/* Por que */

.porque {
  text-align: center;
  background-image: url(https://brand.receto.com.ar/img/por-que-confian-recetas-electronicas.png);
  background-size: cover;
  color: var(--blanco);
  padding: 88px 24px 112px 24px;
}

.porque .h2__title {
  color: var(--blanco);
}

.porque__item {
  margin-top: 32px;
}

.porque__items {
  margin-top: 64px;
}

/* Mercado Pago */

.mercadoPago__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  margin: 56px 0px 40px 0px;
}

/* Código QR */
.codigo-qr,
.codigo-qr .h2__title {
  background-color: var(--receto-primario);
  color: var(--blanco);
}

.codigo-qr .h2__title {
  margin-bottom: 8px;
}

.codigo-qr .content {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.codigo-qr img {
  display: block;
  margin: 0 auto;
  width: 272px;
  margin-bottom: 32px;
}

.codigo-qr .registrate__pasos {
  margin: 24px 0;
  text-align: center;
}

.codigo-qr__content .registrate__pasos .registrate__paso .icon {
  display: flex;
  justify-content: left;
  /* margin: auto; */
  margin-bottom: 8px;
}

.codigo-qr__content a {
  margin: auto;
}

@media (min-width: 1024px) {
  .codigo-qr .content {
    flex-direction: row;
    align-items: center;
    justify-content: left;
    text-align: left;
  }

  .codigo-qr__content .registrate__pasos .registrate__paso .icon {
    display: flex;
    justify-content: left;
    margin: 0;
  }

  .codigo-qr__content a {
    margin: 0;
  }
}

@media (min-width: 1440px) {
  .codigo-qr img {
    width: 300px;
  }
}

/* App */

.app {
  background-color: var(--receto-blanco);
}

.app .content {
  padding: 40px 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(--receto-primario);
  margin-bottom: 8px;
}

.app__item {
  margin: 24px 0px;
}

.app__item p {
  text-align: center;
  font-size: 18px;
}

.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;
}

/* Seguridad */

.seguridad__integradas {
  margin: 32px 0px;
}

.seguridad__integradas p {
  color: var(--negro-texto);
  text-align: left;
}

.seguridad__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}

.seguridad__card {
  flex: 1 1 calc(50% - 8px);
  display: flex;
  justify-content: center;
}

.seguridad__card img {
  max-width: 100%;
  height: auto;
}

.seguridad__card-last {
  flex: 1 1 100%;
  text-align: center;
  font-weight: bold;
}

.seguridad__card-last {
  flex: 1 1 100%;
  text-align: center;
  align-items: center;
  font-weight: 200;
  height: 88px;
}

/* DrApp */

.drapp {
  background-color: var(--drapp-azul-claro);
  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%;
}

/* Footer */

.footer__rrss-icon a {
  color: var(--negro-texto);
  font-size: 24px;
}

.footer__rrss {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: auto;
  padding-top: 16px;
}

.footer__sellos {
  margin: 64px 0px;
}

.footer__links .badges {
  justify-content: center;
}

.footer__sello {
  margin-top: 32px;
}

.footer__sello p .caption {
  color: var(--negro-texto);
  margin-bottom: 8px;
  font-weight: 200;
}

hr {
  border: 0;
  height: 2px;
  background-color: var(--receto-blanco);
  margin-top: 4px;
}

.footer__sello-img {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.footer__sello-img-logo {
  max-width: 100%;
}

.footer__datos-logo img {
  width: 88px;
  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: 16px 0px 40px 0px;
}

.faqs__titles .icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.faqs__title {
  text-transform: uppercase;
  color: var(--receto-primario);
  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(--receto-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: "Overpass";
}

.accordion-button .icon {
  color: var(--negro-texto);
}

.accordion-button:hover {
  background-color: var(--receto-blanco);
}

.accordion-content {
  display: none;
  padding: 16px;
}

.accordion-content p {
  margin: 0;
}

/* Estilo para cuando el acordeón está abierto */
.accordion-item.active .accordion-content {
  display: block;
}

/* Contacto */

.contacto__intro {
  background-color: var(--no-blanco);
  padding: 16px 0px 40px 0px;
}

.contacto img {
  width: 128px;
  height: auto;
  margin-bottom: 16px;
}

.contacto .footer__rrss {
  justify-content: start;
}

.contacto .faqs__content {
  margin-top: 56px;
}

.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;
}

/* Pestaña DrApp */

.drapp__tools .titles .subtitulo {
  font-family: Nunito;
  font-weight: 200;
  color: var(--drapp-azul);
}

.drapp__tools .titles h3 {
  font-family: "nunito";
  color: var(--drapp-azul);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  margin: 4px 0px 4px 0px;
}

.drapp__tools .icon {
  color: var(--drapp-azul);
}

.drapp__tools .drapp__features {
  margin-top: 40px;
}

.drapp__tools .drapp__feature {
  margin: 24px 0px;
}

.drapp__tools .drapp__feature img {
  margin-bottom: 16px;
}

.drapp__notifications {
  background-color: var(--drapp-azul);
  align-items: center;
}

.drapp__notifications .titles h3,
.drapp__notifications .titles .subtitulo,
.drapp__notifications .icon,
.drapp__notifications p {
  color: var(--blanco);
}

.drapp__notifications .titles {
  text-align: center;
}

.drapp__notification img {
  max-width: 200px;
  margin-bottom: 24px;
}

.drapp__notification {
  text-align: center;
}

.drapp__feature-list p {
  text-align: left;
}

.drapp__beneficios .titles {
  text-align: right;
}

.drapp__beneficios {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.drapp__beneficios .benefits__card-title {
  font-family: "nunito";
  font-weight: 800;
  color: var(--drapp-azul);
}

.drapp__beneficios .icon {
  color: var(--drapp-azul);
}

.drapp__btn--secondary {
  font-family: nunito;
  font-weight: 800;
  color: var(--drapp-azul);
  border-color: var(--drapp-azul);
}

.drapp__numeros {
  background-color: var(--drapp-celeste);
  padding: 80px 0px;
}

.drapp__numeros .content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.drapp__numero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.drapp__numero-icon-bg {
  background-color: #27b5e4;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
}

.drapp__numero-icon-bg .icon {
  color: var(--blanco);
  margin: auto;
}

.drapp__numero-title {
  font-family: nunito;
  font-weight: 800;
  font-size: 24px;
  color: var(--blanco);
}

.drapp__numero .body-light {
  font-family: roboto;
  font-size: 16px;
  color: var(--blanco);
  text-transform: uppercase;
}

.drapp__testimonios .titles .subtitulo {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: 1.4px;
  color: var(--drapp-azul);
}

.drapp__testimonios .titles .h2__title {
  font-family: Nunito;
  font-size: 24px;
  font-weight: 900;
  color: var(--drapp-azul);
}

.drapp__testimonios__cards {
  margin: 32px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drapp__testimonios__card {
  padding: 24px 16px;
}

.drapp__testimonios a {
  margin: auto;
}

.drapp__contacto-texto .subtitulo {
  color: var(--drapp-azul);
}

.drapp__contacto-texto {
  margin: 16px 0px 24px 0;
}

/* Form HubSpot */

.hs-button {
  width: 100%;
  background-color: #13629b;
  color: white;
  border-width: 0px;
  height: 36px;
  border-radius: 16px;
  font-family: nunito;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  height: 40px;
}

input {
  width: 100%;
  background-color: #ffffff;
  border-width: 0px;
  height: 36px;
  border-radius: 16px;
  font-family: nunito;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 2, 0.02);
}

textarea {
  width: 100%;
  background-color: #ffffff;
  border-width: 0px;
  height: 128px;
  border-radius: 16px;
  font-family: nunito;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 16px;
}

.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: 200;
}

h4 {
  color: var(--drapp-azul);
}

.drapp__form {
  margin-top: 40px;
}

/* Card Mercado Pago */

.card-alert {
  background-color: var(--receto-blanco);
  padding: 24px 16px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--receto-primario);
}

.card-alert--content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-alert--content-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
}

.link-help {
  color: var(--receto-primario);
}

.hidden-mobile-item {
  display: none;
}

@media (min-width: 1024px) {
  .card-alert {
    flex-direction: row;
    align-items: center;
  }
}

/* Desktop: A partir de 1024px */
@media (min-width: 1024px) {
  .main-content {
    margin: 88px auto;
  }

  .content {
    margin: auto;
    max-width: 944px;
    padding: 64px 0px 80px 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 {
    display: flex;
    align-items: center;
  }

  .hidden-mobile {
    display: block;
  }

  .solicitud__intro {
    text-align: center;
  }

  .h2__title__register{
    text-align: left
  }

  .hero__cta{
    width: 50%;
  }

  .hero__cta_full{
    width: 100%;
  }

  .hero__cta--register{
    width: 15%;
  }

  .h1__title {
    line-height: 48px;
    font-size: 38px;
    width: 100%;
  }

  .title-testimonies {
    width: 100%;
  }

  .benefits__titles{
    text-align: right;
  }

  .registrate__paso_p {
    text-align: right;
  }
  
  .registrate__btn {
    width: 100%;
    text-align: center;
    margin: auto;
  }

  .registrate__paso-text {
    text-align: left;
  }

  .h2__title {
    font-size: 28px;
    line-height: 40px;
  }

  .benefits .content {
    display: flex;
    gap: 24px;
  }

  .benefits__img {
    width: 50%;
    display: flex;
    justify-content: end;
  }

  .benefits__img img {
    display: flex;
    justify-content: flex-end;
  }

  .registrate {
    padding: 24px 0 0 0;
  }

  .registrate__content {
    align-items: center;
    /* margin: auto; */
  }
  .registrate__content_left {
    align-items: flex-start
    /* margin: auto; */
  }

  .title_gap {
    gap: 120px;
  }

  .registrate__title-mobile {
    font-size: 28px;
    line-height: 32px;
    text-align: left;
  }

  .hidden-mobile-item {
    display: block;
  }

  .registrate__pasos {
    margin: auto;
  }

  .registrate__paso {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .registrate__paso .icon {
    color: var(--blanco);
    background-color: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    min-width: auto;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0px;
  }

  .registrate__paso p {
    /* width: auto; */
    font-size: 20px;
    line-height: 28px;
  }

  .registrate .content {
    display: flex;
    gap: 24px;
    padding-bottom: 0;
    justify-content: center;
  }

  .registrate img {
    width: 388px;
    margin: 0;
    }

  .registrate__paso-text{
    text-align: left;
  }

  .testimonios {
    margin: 56px 0px 64px 0px;
  }

  .testimonios .titles {
    margin: auto;
    max-width: 944px;
  }

  .testimonios__cards {
    margin: 0px 0px 32px 0px;
  }

  .porque__items {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
  }

  .porque div .h2__title {
    margin-top: 40px;
  }

  .mercadoPago__header {
    padding: 32px 24px;
  }

  .mercadoPago a {
    display: flex;
    margin: auto;
    margin-top: 24px;
  }

  .mercadoPago__content {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .mercadoPago__content .titles {
    flex: 1;
  }

  .mercadoPago__content .hero__features {
    flex: 1;
  }

  .app__content {
    width: 388px;
  }

  .app .content {
    display: flex;
    gap: 124px;
    align-items: center;
    justify-content: center;
  }

  .hero__ctas .badges {
    width: 276px;
    justify-content: space-between;
  }

  .hidden-desktop {
    display: none;
  }

  .seguridad__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .seguridad__card {
    flex: none;
  }

  .seguridad__card-last {
    grid-column: span 4;
  }

  .drapp__benefits-content {
    display: flex;
  }

  .drapp__feature {
    flex-direction: row; /* Texto e imagen lado a lado */
    justify-content: center;
    gap: 24px;
  }

  /* Alternar el orden en los items pares */
  .drapp__feature:nth-child(even) {
    flex-direction: row-reverse; /* Imagen a la derecha, texto a la izquierda */
  }

  .drapp__feature img {
    width: 460px;
    margin-bottom: 0; /* Eliminar el margen inferior en desktop */
  }

  .drapp__tools .titles h3 {
    font-size: 24px;
    line-height: 32px;
    margin: 4px 0px 4px 0px;
  }

  .drapp__notification {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .drapp__notifications img {
    max-width: 250px;
  }

  .drapp__notification,
  .drapp__notification p,
  .drapp__notification .subtitulo,
  .drapp__notification h3 {
    text-align: left;
  }

  .drapp__beneficios .titles {
    max-width: 680px;
  }

  .drapp__beneficios .benefits__cards {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 20px; /* Espacio entre las columnas */
    margin: auto;
    margin: 24px 0px;
  }

  .drapp__beneficios .benefits__card {
    margin-bottom: 0px;
  }

  .drapp__numeros .content {
    flex-direction: row;
    justify-content: space-between;
  }

  .drapp__testimonios__cards {
    flex-direction: row;
  }

  .drapp__contacto-content {
    display: flex;
  }

  .drapp__contacto-texto,
  .drapp__form {
    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;
  }

  .footer__sellos {
    display: flex;
    gap: 32px;
    margin-top: 0px;
  }

  .footer__sello {
    flex: 1 0 0;
  }

  .footer__politicas {
    display: flex;
    justify-content: center;
  }

  .faqs__intro {
    padding: 80px 0px;
  }

  .faqs__titles-h1 {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .contacto__intro {
    padding: 80px 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: 52px;
    font-size: 42px;
  }

  .hero__icon-text {
    font-size: 20px;
  }

  .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;
  }

  .drapp__feature img {
    width: 562px;
    margin-bottom: 0; /* Eliminar el margen inferior en desktop */
  }
}


@media (min-width: 1520px) {
  .content_benefits {
    max-width: 1500px;
  }
}