/* RESET Y ESTILOS GENERALES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-x: hidden;
  color: #333333;
  font-family: "Nunito Sans", sans-serif;
  background-color: #ffffff;
  line-height: 1.6;
}

/* VARIABLES DE COLOR LUPPA */
:root {
  --verde-luppa: #00a36c;
  --verde-hover: #00925f;
  --verde-claro: #e8f5f0;
  --blanco: #ffffff;
  --gris-claro: #f8f9fa;
  --gris-medio: #e9ecef;
  --gris-oscuro: #6c757d;
  --amarillo: #ffc107;
  --amarillo-claro: #fff3cd;
  --rojo: #ff6b6b;
  --rojo-claro: #ffe6e6;
  --sombra-suave: 0 8px 30px rgba(0, 0, 0, 0.05);
  --sombra-media: 0 10px 40px rgba(0, 0, 0, 0.08);
  --sombra-fuerte: 0 15px 50px rgba(0, 0, 0, 0.1);
  --radio-borde: 16px;
  --radio-grande: 24px;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--gris-claro);
}

.section-dark {
  background-color: var(--verde-luppa);
  color: var(--blanco);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-align: center;
  color: #222;
}

.section-dark .section-title {
  color: var(--blanco);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gris-oscuro);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.text-green {
  color: var(--verde-luppa);
}

.section-dark .text-green {
  color: var(--amarillo);
}

.centrar {
  text-align: center;
  margin-top: 40px;
}

/* HEADER STICKY */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255, 255, 255, 0);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.scrolled {
  background-color: var(--blanco);
  padding: 16px 0;
  box-shadow: var(--sombra-suave);
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--verde-luppa);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background-color: var(--verde-luppa);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--verde-luppa);
}

.nav-links a.active {
  color: var(--verde-luppa);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background: var(--verde-luppa);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

.header-download-btn {
  background-color: var(--verde-luppa);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 163, 108, 0.2);
}

.header-download-btn:hover {
  background-color: var(--verde-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 143, 92, 0.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gris-oscuro);
  cursor: pointer;
  padding: 8px;
}

/* BOTONES GENERALES */
.btn-primary,
.btn-secondary {
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background-color: var(--verde-luppa);
  color: white;
  box-shadow: var(--sombra-suave);
}

.btn-primary:hover {
  background-color: var(--verde-hover);
  transform: translateY(-3px);
  box-shadow: var(--sombra-media);
}

.btn-secondary {
  background-color: transparent;
  color: var(--verde-luppa);
  border: 2px solid var(--verde-luppa);
}

.btn-secondary:hover {
  background-color: rgba(0, 163, 108, 0.08);
  transform: translateY(-3px);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding-top: 100px;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px; /* Aumentado de 1200px */
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 620px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #222;
}

.hero-title-accent {
  color: var(--verde-luppa);
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: rgba(0, 163, 108, 0.15);
  bottom: 5px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gris-oscuro);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--verde-luppa);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.star-icon {
  color: var(--amarillo);
  font-size: 1.8rem;
}

.users-icon {
  color: var(--verde-luppa);
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gris-oscuro);
  margin-top: 8px;
  font-weight: 500;
}

/* MOCKUP DEL TELÉFONO */
.phone-mockup {
  flex: 1;
  max-width: 400px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(0.5deg);
  }
  66% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

.phone-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  width: 100%;
  padding-bottom: 200%;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 12px solid #ffffff;
}

.phone-screen {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--gris-claro);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-header {
  background: var(--verde-luppa);
  color: white;
  padding: 24px 20px;
  text-align: center;
  border-radius: 28px 28px 0 0;
}

.app-header h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.app-header p {
  font-size: 13px;
  opacity: 0.9;
  margin: 4px 0 0;
  font-weight: 400;
}

.scan-area {
  padding: 40px 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.scan-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--verde-luppa), #00c981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 34px;
  box-shadow: 0 10px 30px rgba(0, 163, 108, 0.2);
  animation: scanPulse 2s infinite;
}

@keyframes scanPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 163, 108, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 163, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 163, 108, 0);
  }
}

.scan-area h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}

.scan-area p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  max-width: 200px;
}

.scan-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.green {
  background: var(--verde-luppa);
}

.dot.yellow {
  background: var(--amarillo);
}

.dot.red {
  background: var(--rojo);
}

.score-display {
  background: white;
  padding: 20px;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-item {
  text-align: center;
  flex: 1;
}

.score-label {
  font-size: 12px;
  color: var(--gris-oscuro);
  margin-bottom: 6px;
  font-weight: 500;
}

.score-value {
  font-size: 28px;
  font-weight: 700;
}

.nutri-score {
  color: var(--verde-luppa);
}

.nova-score {
  color: var(--amarillo);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gris-oscuro);
  z-index: 10;
  animation: bounce 2s infinite;
  font-size: 14px;
  font-weight: 500;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

.scroll-indicator i {
  margin-top: 8px;
  font-size: 18px;
  color: var(--verde-luppa);
}

/* SECCIÓN QUÉ ES LUPPA */
.que-es-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.que-es-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--gris-oscuro);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  background: var(--verde-claro);
  color: var(--verde-luppa);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #333;
}

.feature-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--gris-oscuro);
}

.que-es-image .image-placeholder {
  background: var(--verde-claro);
  border-radius: var(--radio-grande);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--verde-luppa);
}

.que-es-image .image-placeholder i {
  font-size: 100px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.que-es-image .image-placeholder p {
  font-size: 1rem;
  color: var(--gris-oscuro);
}

/* SECCIÓN CÓMO FUNCIONA */
.pasos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .pasos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pasos-container {
    grid-template-columns: 1fr;
  }
}

.paso {
  text-align: center;
  padding: 30px 20px;
  background: var(--blanco);
  border-radius: var(--radio-borde);
  box-shadow: var(--sombra-suave);
  transition: transform 0.3s ease;
}

.paso:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-media);
}

.paso-numero {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--verde-luppa);
  color: var(--blanco);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 40px;
  margin-bottom: 15px;
}

.paso-icono {
  font-size: 2.5rem;
  color: var(--verde-luppa);
  margin-bottom: 15px;
}

.paso h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.paso p {
  color: var(--gris-oscuro);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SECCIÓN INTERPRETACIÓN */
.sistemas-tabs {
  background: var(--blanco);
  border-radius: var(--radio-grande);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  margin-top: 40px;
}

.tabs-header {
  display: flex;
  background: var(--gris-claro);
  border-bottom: 1px solid var(--gris-medio);
}

.tab-btn {
  flex: 1;
  padding: 20px;
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gris-oscuro);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tab-btn.active {
  background: var(--blanco);
  color: var(--verde-luppa);
  border-bottom: 3px solid var(--verde-luppa);
}

.tab-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.03);
}

.tabs-content {
  padding: 40px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #333;
}

.tab-info > p {
  color: var(--gris-oscuro);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* Escala Nutri-Score */
.nutriscore-escala {
  display: flex;
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
}

.escala-item {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  color: white;
}

.escala-item.a {
  background: #00a36c;
}
.escala-item.b {
  background: #7ac142;
}
.escala-item.c {
  background: #ffc107;
  color: #333;
}
.escala-item.d {
  background: #ff9800;
}
.escala-item.e {
  background: #f44336;
}

.escala-letra {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.escala-desc {
  font-size: 0.9rem;
  opacity: 0.9;
}

.tab-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.detail {
  padding: 20px;
  background: var(--gris-claro);
  border-radius: var(--radio-borde);
}

.detail h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail h4 i {
  font-size: 1.2rem;
}

.detail h4 i.fa-thumbs-up {
  color: var(--verde-luppa);
}

.detail h4 i.fa-thumbs-down {
  color: var(--rojo);
}

.detail p {
  color: var(--gris-oscuro);
  font-size: 0.95rem;
}

/* Escala NOVA */
.nova-escala {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .nova-escala {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nova-escala {
    grid-template-columns: 1fr;
  }
}

.nova-item {
  padding: 25px 20px;
  border-radius: var(--radio-borde);
  text-align: center;
  transition: transform 0.3s ease;
}

.nova-item:hover {
  transform: translateY(-5px);
}

.nova-item.grupo1 {
  background: var(--verde-claro);
}
.nova-item.grupo2 {
  background: #e3f2fd;
}
.nova-item.grupo3 {
  background: var(--amarillo-claro);
}
.nova-item.grupo4 {
  background: var(--rojo-claro);
}

.nova-numero {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--verde-luppa);
  color: var(--blanco);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 50px;
  margin-bottom: 15px;
}

.nova-item.grupo2 .nova-numero {
  background: #2196f3;
}
.nova-item.grupo3 .nova-numero {
  background: var(--amarillo);
}
.nova-item.grupo4 .nova-numero {
  background: var(--rojo);
}

.nova-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.nova-item p {
  color: var(--gris-oscuro);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tab-tip {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--amarillo-claro);
  border-radius: var(--radio-borde);
  margin-top: 30px;
  align-items: flex-start;
}

.tab-tip i {
  color: var(--amarillo);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.tab-tip p {
  color: #856404;
  font-size: 1rem;
  margin: 0;
}

/* SECCIÓN BENEFICIOS */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}

.beneficio-card {
  padding: 30px;
  background: var(--blanco);
  border-radius: var(--radio-borde);
  text-align: center;
  box-shadow: var(--sombra-suave);
  transition: all 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-media);
}

.beneficio-icon {
  width: 70px;
  height: 70px;
  background: var(--verde-claro);
  color: var(--verde-luppa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.beneficio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.beneficio-card p {
  color: var(--gris-oscuro);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SECCIÓN ESTILO DE VIDA */
.estilo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .estilo-grid {
    grid-template-columns: 1fr;
  }
}

.estilo-card {
  padding: 30px;
  background: var(--blanco);
  border-radius: var(--radio-borde);
  text-align: center;
  box-shadow: var(--sombra-suave);
  transition: transform 0.3s ease;
}

.estilo-card:hover {
  transform: translateY(-5px);
}

.estilo-icon {
  width: 70px;
  height: 70px;
  background: var(--verde-claro);
  color: var(--verde-luppa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.estilo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.estilo-card p {
  color: var(--gris-oscuro);
  font-size: 0.95rem;
  line-height: 1.6;
}

.estilo-consejo {
  text-align: center;
  margin-top: 50px;
  padding: 25px;
  background: var(--blanco);
  border-radius: var(--radio-borde);
  box-shadow: var(--sombra-suave);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.estilo-consejo i {
  color: var(--verde-luppa);
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.estilo-consejo p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

/* SECCIÓN HISTORIA */
.historia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.historia-testimonio {
  background: var(--blanco);
  border-radius: var(--radio-grande);
  padding: 40px;
  box-shadow: var(--sombra-suave);
}

.testimonio-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gris-oscuro);
  margin-bottom: 20px;
}

.testimonio-texto p:last-child {
  margin-bottom: 0;
}

.testimonio-autor {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gris-medio);
}

.autor-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #333;
}

.autor-info p {
  color: var(--gris-oscuro);
  font-size: 0.95rem;
}

.historia-imagen .imagen-placeholder {
  background: var(--verde-claro);
  border-radius: var(--radio-grande);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--verde-luppa);
}

.historia-imagen .imagen-placeholder i {
  font-size: 120px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.historia-imagen .imagen-placeholder p {
  font-size: 1rem;
  color: var(--gris-oscuro);
}

/* SECCIÓN DESCARGA */
.descarga-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.descarga-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  border: none;
  border-radius: var(--radio-borde);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 220px;
}

.store-btn i {
  font-size: 2rem;
}

.store-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.store-disponible {
  font-size: 0.8rem;
  opacity: 0.9;
}

.store-nombre {
  font-size: 1.3rem;
}

.apple-btn {
  background: #000;
  color: white;
}

.apple-btn:hover {
  background: #333;
  transform: translateY(-5px);
}

.google-btn {
  background: white;
  color: #333;
}

.google-btn:hover {
  background: #f8f9fa;
  transform: translateY(-5px);
}

.descarga-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.descarga-stat {
  text-align: center;
}

.stat-numero {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* SECCIÓN FAQ */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--radio-borde);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
}

.faq-pregunta {
  width: 100%;
  padding: 20px 25px;
  background: var(--blanco);
  border: none;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-pregunta:hover {
  background: var(--gris-claro);
}

.faq-pregunta i {
  transition: transform 0.3s ease;
  color: var(--verde-luppa);
}

.faq-pregunta.active i {
  transform: rotate(180deg);
}

.faq-respuesta {
  padding: 0 25px;
  background: var(--blanco);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-respuesta.open {
  padding: 0 25px 25px;
  max-height: 500px;
}

.faq-respuesta p {
  color: var(--gris-oscuro);
  line-height: 1.6;
  margin: 0;
}

/* SECCIÓN CONTACTO */
.contacto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 992px) {
  .contacto-content {
    grid-template-columns: 1fr;
  }
}

.contacto-subtitle {
  font-size: 1.1rem;
  color: var(--gris-oscuro);
  margin-bottom: 40px;
  text-align: left;
}

.contacto-medios {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-medio {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--blanco);
  border-radius: var(--radio-borde);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid var(--gris-medio);
}

.contacto-medio:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-media);
  border-color: var(--verde-luppa);
}

.medio-icon {
  width: 60px;
  height: 60px;
  background: var(--verde-claro);
  color: var(--verde-luppa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.medio-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #333;
}

.medio-info p {
  color: var(--gris-oscuro);
  font-size: 0.95rem;
}

.contacto-form {
  background: var(--blanco);
  padding: 40px;
  border-radius: var(--radio-grande);
  box-shadow: var(--sombra-suave);
}

.contacto-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--gris-medio);
  border-radius: var(--radio-borde);
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  color: #333;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--verde-luppa);
}

.form-group textarea {
  resize: vertical;
}

/* FOOTER */
.footer {
  background: #222;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-logo .logo {
  color: white;
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--verde-luppa);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--verde-luppa);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 850px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-video-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--verde-luppa), #00c981);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--verde-luppa);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-icon:hover {
  transform: scale(1.1);
  background: white;
}

.modal-info {
  padding: 30px;
  text-align: center;
}

.modal-info h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #333;
}

.modal-info p {
  color: var(--gris-oscuro);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* RESPONSIVE GENERAL */
@media (max-width: 1200px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat-item {
    align-items: center;
  }

  .phone-mockup {
    margin-top: 40px;
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .que-es-content,
  .historia-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .que-es-image .image-placeholder,
  .historia-imagen .imagen-placeholder {
    height: 300px;
  }

  .tabs-header {
    flex-direction: column;
  }

  .tab-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--blanco);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--sombra-media);
    display: none;
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .header-download-btn span {
    display: none;
  }

  .header-download-btn {
    padding: 12px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .modal-content {
    width: 95%;
  }

  .modal-video-placeholder {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .descarga-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 280px;
  }

  .descarga-stats {
    flex-direction: column;
    gap: 25px;
  }

  .contacto-form {
    padding: 30px 20px;
  }
}

/* LOGO COMPLETO */
.logo-completo {
  height: 140px; /* Ajusta según tu logo */
  width: auto;
  transition: all 0.3s ease;
}

header.scrolled .logo-completo {
  height: 45px; /* Un poco más pequeño al hacer scroll */
}

/* Para móviles */
@media (max-width: 768px) {
  .logo-completo {
    height: 40px;
  }

  header.scrolled .logo-completo {
    height: 35px;
  }
}
