/* FUENTES LOCALES */
@font-face {
  font-family: 'Bethany Elingston';
  src: url('fonts/Bethany Elingston.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* RESET Y GLOBALES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: var(--texto-principal);
  background: rgba(249, 251, 255, 0.95);
  color: #0A0A0A;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, .resultados-text {
  font-family: 'Bethany Elingston', serif;
  font-weight: 400;
}

/* VARIABLES */
:root {
  --blanco-principal: #F9FBFF;
  --texto-principal: 1rem;
  --texto-garantia: 0.85rem;
}

/* HEADER Y NAVEGACIÓN */
.footer {
  flex: 0 0 auto;
  background: #ffff71;
  padding: 20px;
  text-align: center;
}
.header {
  padding: 0;
  font-family: 'Bethany Elingston', serif;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
}

.header-container {
  max-width: 1100px;
  width: 100%;
  margin: 15px 15px;
  border-radius: 12px;
  padding: 20px 30px;
  box-sizing: border-box;
  background: #ffff71;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.logo, .logo-footer {
  display: inline-block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: #0A0A0A;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav a:hover {
  background-color: #ffff33;
}
.btn, .btn-primary, .btn-outline {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background-color: #ffff33B3;
  color: #0A0A0A;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* Estilos base de los botones con transición */
.btn-header {
  background-color: #ffff71 !important;
  color: #0A0A0A !important;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.btn, .btn-primary, .btn-outline {
  transition: all 0.3s ease-in-out;
}

.btn:hover, .btn-primary:hover, .btn-outline:hover {
  background-color: #ffff33;
  color: #0A0A0A;
  border: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.menu-toggle .bar {
  width: 28px;
  height: 4px;
  background: #0A0A0A;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(249, 251, 255, 1);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nav-mobile.active {
  display: flex;
}
.nav-mobile a {
  display: block;
  width: 80vw;
  max-width: 320px;
  margin: 12px auto;
  text-align: center;
  color: #0A0A0A;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background 0.2s;
  background: none;
  border: none;
}
.nav-mobile a.btn {
  background: #ffff33ed;
  color: #0A0A0A;
  border: none;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile a.btn:hover {
  background-color: #ffff33b3;
  color: #0A0A0A;
  border: none;
}

/* MAIN Y SECCIONES */
.main-content {
  flex: 1 0 auto;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100vw;
  overflow: visible;
  height: auto;
  padding: 0 15px;
  gap: 16px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 0 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 900px;
  margin-bottom: 30px;
}

.hero-text {
  flex: 1;
  text-align: justify;
  max-width: 600px;
}

.hero-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 370px;
  height: auto;
  border-radius: 12px;
}
.hero h1 {
  font-family: 'Bethany Elingston', serif;
  font-size: 2.6rem;
  text-align: left;
  margin: 0;
  line-height: 1.2;
}
.cta-button {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0 15px 0;
  gap: 10px;
}
.sub-button {
  text-align: center;
  font-style: italic;
  width: 100%;
  display: block;
  font-size: 0.9rem;
}
.situaciones {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  gap: 16px;
  margin-bottom: 30px;
  padding: 40px 0;
}
.situaciones h2 {
  font-family: 'Bethany Elingston', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 900px;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.card-problema {
  border: 1px solid #0A0A0A;
  border-radius: 12px;
  padding: 24px;
  background: rgba(249, 251, 255, 0.95);
  width: 100%;
  font-size: var(--texto-principal);
}
.card-problema ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.card-problema ul li {
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: center;
}
.card-problema ul li:last-child {
  margin-bottom: 0;
}

/* Ideal para */
.ideal-para {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  gap: 16px;
  margin-bottom: 30px;
  padding: 40px 0;
}
.ideal-para h2 {
  font-family: 'Bethany Elingston', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.card-ideal {
  border: 1px solid #0A0A0A;
  border-radius: 12px;
  padding: 24px;
  background: rgba(249, 251, 255, 0.7);
  width: 100%;
  text-align: center;
  font-size: var(--texto-principal);
}
.card-ideal p {
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: center;
}
.card-ideal p:last-child {
  margin-bottom: 0;
}

.ideal-para-text {
  font-size: var(--texto-principal);
}

.motivacional-box {
  background: #ffff71;
  border: 1px solid #0A0A0A;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-family: 'Bethany Elingston', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0px 0px;
  max-width: 900px;
  width: 100%;
}
.beneficios {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  gap: 16px;
  margin-bottom: 30px;
  padding: 40px 0;
}
.beneficios h2 {
  font-family: 'Bethany Elingston', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.beneficios-text {
  text-align: center;
  font-size: var(--texto-principal);
  line-height: 1.6;
  border: 1px solid #0A0A0A;
  border-radius: 12px;
  padding: 24px;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  background: rgba(249, 251, 255, 0.7);
}

.beneficios-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  border: 0px;
}

.oferta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  gap: 16px;
  margin-bottom: 30px;
  padding: 40px 0;
}
.oferta h2 {
  font-family: 'Bethany Elingston', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

/* Contenedor para servicios */
.servicios-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 15px;
}

.oferta-box {
  background: transparent;
  border: 1px solid #0A0A0A;
  border-radius: 12px;
  padding: 45px 24px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}
.oferta-box .garantia-servicio {
  margin-top: auto;
}
.oferta-box h3 {
  font-family: 'Bethany Elingston', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #0A0A0A;
}

.marketplace-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  filter: grayscale(0.9);
}

.marketplace-logo img {
  max-width: 210px;
  height: auto;
}
.oferta-box-text {
  font-size: var(--texto-principal);
  margin-bottom: 16px;
  color: #0A0A0A;
}


.garantia-servicio {
  margin-top: 12px;
  padding: 8px 12px;
  background: #ffff71;
  border-radius: 6px;
  font-size: var(--texto-garantia);
  line-height: 1.4;
  color: #0A0A0A;
  text-align: center;
}
.oferta-box ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  text-align: left;
}
.oferta-box ul li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.oferta-box ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0A0A0A;
  font-weight: bold;
}

/* Estilos para la tarjeta combinada */
.oferta-combinada {
  background: transparent;
  border: 1px solid #0A0A0A;
  position: relative;
}

.oferta-combinada::before {
  content: "MÁS POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffff33;
  color: #0A0A0A;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border: 1px solid #0A0A0A;
}


.oferta-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}

.logo-pequeno {
  max-width: 140px;
  height: auto;
}

.mas-simbolo {
  margin-bottom: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A0A0A;
  font-family: 'Poppins', sans-serif;
  position: relative;
  top: 25px;
}


.ahorro-texto {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0A0A0A;
  background: #ffff33;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
}

/* Estilos para la tarjeta unificada */
.oferta-unica {
  background: transparent;
  border: 1px solid #0A0A0A;
}

.marketplace-selector {
  margin-bottom: 20px;
}

.selector-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.marketplace-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.marketplace-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.marketplace-option:hover {
  background: transparent;
  border: none;
}

.marketplace-option.active {
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo-option {
  max-width: 140px;
  height: auto;
  filter: grayscale(0.9);
  transition: filter 0.3s ease;
}

.marketplace-option.active .logo-option {
  filter: grayscale(0);
}


.marketplace-content {
  transition: opacity 0.3s ease;
}


/* SECCIÓN RESULTADOS */
.resultados {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  gap: 16px;
  margin-bottom: 30px;
  padding: 40px 0;
}
.resultados h2 {
  font-family: 'Bethany Elingston', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.resultados-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 800px;
  padding: 0 10px;
}
.resultados-text {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  font-family: 'Bethany Elingston', serif;
  width: 100%;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: #ffff71;
  padding: 40px 20px 20px 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}

.footer-info > div {
  min-width: 150px;
  flex: 1;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-info-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0A0A0A;
  display: block;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}

/* Centrar específicamente el texto de contacto y WhatsApp */
.footer-info > div > span:not(.footer-info-title) {
  text-align: center;
  width: 100%;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Estilo para el enlace de WhatsApp en el footer */
.footer-info a {
  color: inherit;
  text-decoration: none;
}

.footer-info a:hover {
  color: inherit;
  text-decoration: none;
}

/* Estilo específico para el email*/
.footer-info > div:nth-child(2) > span:not(.footer-info-title) {
  font-size: 0.9rem;
  line-height: 1.2;
}

.contenedor-iconos-redes-sociales {
  margin-top: 12px;
}
.lista-iconos-sociales {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lista-iconos-sociales li {
  display: inline-block;
  margin: 0;
}
.enlace-icono-social {
  display: inline-block;
  color: #0A0A0A;
  text-decoration: none;
  transition: color 0.2s;
}
.enlace-icono-social i {
  font-size: 24px;
  vertical-align: middle;
}

/* HOVER ICONOS REDES SOCIALES */
.enlace-icono-social.icono-facebook:hover {
  color: #1877f2;
}
.enlace-icono-social.icono-instagram:hover {
  color: #e4405f;
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #0A0A0A;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .servicios-container {
    flex-direction: column;
    align-items: center;
    padding: 0 0px;
  }
  .situaciones h2 {
    margin-top: 50px;
  }
  .footer-container {
    gap: 20px;
  }
  .footer-info {
    flex-direction: column;
    gap: 20px;
  }
  .footer-info > div {
    min-width: auto;
  }
  .footer-info > div:last-child {
    min-width: auto;
  }
  .contenedor-iconos-redes-sociales {
    margin-top: 8px;
  }
  .lista-iconos-sociales {
    gap: 12px;
  }
  .footer-copy {
    margin-top: 15px;
  }
  .oferta-box {
    max-width: 100%;
  }
  .card-list {
    width: 100%;
    max-width: 900px;
  }
  .card.card-problema,
  .card.card-problema,
  .card.card-ideal {
    padding: 20px;
    margin: 0 15px;
  }
  .motivacional-box {
    margin: 0px 15px;
    padding: 20px;
  }
  .beneficio-full {
    margin: 0 15px;
  }
  .beneficios-list {
    flex-direction: column;
    gap: 12px;
  }
  .oferta-box {
    margin: 0;
    max-width: 100%;
  }
  
  .oferta-combinada::before {
    font-size: 0.7rem;
    padding: 3px 12px;
  }
  
  .marketplace-options {
    gap: 12px;
  }
  
  .marketplace-option {
    padding: 14px 16px;
  }
  .oferta {
    min-height: auto;
    padding: 20px 0;
  }
  .beneficio,
  .beneficio-full {
    margin: 0 15px;
  }
  .motivacional-box {
    margin: 0px 15px;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero h1 {
    margin-top: 30px;
    font-size: 1.6rem;
    text-align: center;
  }
}
@media (max-width: 600px) {
    .beneficio {
        margin: 0;
        padding: 16px;
    }
    
    .hero-image img {
        max-width: 220px;
    }
    
    .marketplace-logos-combinados {
        gap: 8px;
    }
    
    .logo-pequeno {
        max-width: 110px;
    }
    
    .oferta-combinada::before {
        font-size: 0.65rem;
        padding: 2px 10px;
        top: -10px;
    }
    
    .marketplace-options {
        gap: 8px;
    }
    
    .marketplace-option {
        padding: 12px 14px;
    }
    
    .logo-option {
        max-width: 110px;
    }
    
    .selector-text {
        font-size: 0.85rem;
    }
}
@media (min-width: 901px) {
  html, body {
    font-size: var(--texto-principal);
  }
  .main-content {
    padding: 0 30px;
  }
  section {
    margin-bottom: 80px;
  }
  
  /* Grid 2x2 en desktop */
  .beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .card-list {
    width: 100%;
    max-width: 900px;
  }
  .card-problema,
  .card-ideal {
    padding: 24px;
  }
  .card-list {
    width: 100%;
    max-width: 900px;
  }
  .card-problema,
  .card-ideal {
    padding: 24px;
  }
  .beneficios-list {
    flex-direction: column;
    gap: 16px;
  }
  .beneficio,
  .beneficio-full {
    max-width: 100%;
  }
}

/* ANIMACIONES */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up-visible {
  opacity: 1;
  transform: translateY(0);
} 


h2 {
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem !important;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 220px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  /* Altura de secciones en mobile */
  .situaciones,
  .beneficios,
  .ideal-para,
  .oferta,
  .resultados {
    min-height: 50vh;
  }
  
  /* Tamaño de texto de resultados en mobile */
  .resultados-text {
    font-size: 1.4rem;
  }
} 
