/* Variables globales */
:root {
    --primary-color: #40513B;     /* Color principal del sitio (verde oscuro) */
    --accent-color: #FFD700;      /* Color de acento (dorado) */
    --bg-color: #F1F0F6;          /* Color de fondo (gris claro) */
    --text-color: #333;           /* Color de texto principal (gris oscuro) */
    --max-width: 1200px;          /* Ancho máximo para contenedores */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.navbar {
    background: #F1F0F6;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 550px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
}

.features {
    padding: 0;  /* Reducido de 0.1rem */
}

.features-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.features-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.features-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.features-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.benefits {
    padding: 6rem 0;
    background-color: #fff;
}

.benefits-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    opacity: 0.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.benefits-slider {
    padding: 1rem;
    overflow: visible;
    margin: 0 -2rem;
}

.benefit-card {
    background: #fddd65;
    border-radius: 32px;
    height: 300px;
    width: 100%;
    position: relative;
    padding: 2rem;
}

.benefit-number {
    position: absolute;
    top: 0.8rem;
    right: 2rem;
    font-size: 3.0rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.9;
    z-index: 2;
}

.benefit-image {
    position: absolute;
    left: 15px;
    top: 15px;
    height: calc(100% - 30px);
    width: 220px;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-content {
    margin-left: 210px;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    height: 100%;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0.1rem;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    color: #2B4129;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.benefit-card p {
    color: #2B4129;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.primary-button, .cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button:hover, .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes dot {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.btn-animate {
    width: 220px;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
    position: relative;
}

.btn-animate:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btn-animate::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background-color: #dab50e;
    border-radius: 50%;
    animation: dot 1.5s infinite;
}

.mobile-btn {
    display: none;
}

.store-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-self: flex-start;
}

.store-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.store-btn img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.store-btn:hover {
    transform: scale(1.05);
}

/* Navegación del Swiper */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.swiper-button-prev {
    left: 2rem !important;
}

.swiper-button-next {
    right: 2rem !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: var(--primary-color) !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color) !important;
    width: 40px;
}
/* Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        padding-right: 0;
        align-items: center;
    }
    .hero-image {
        justify-content: center;
    }
    .hero-image img {
        width: 100%;
        max-width: 400px;
    }
    .store-buttons {
        align-self: center;
        justify-content: center;
    }
    .features-title, .benefits-title {
        font-size: 2.5rem;
    }
    .features-subtitle, .benefits-subtitle {
        font-size: 1.1rem;
    }
    .benefits-slider {
        padding: 1rem;
        margin: 0;
    }
}

@media (max-width: 768px) {
    /* Ocultar menú en móvil */
    .nav-links a {
        display: none;
    }
    .nav-links .cta-button {
        display: block;
        margin-left: auto; /* Empuja el botón hacia la derecha */
        padding: 0.6rem 1.2rem; /* Reducir un poco el padding para móvil */
        font-size: 0.95rem; /* Ajustar tamaño de fuente */
    }
    .nav-links {
        display: flex;
        align-items: center;
    }
 
    /* Hero section móvil */
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
 
    .hero-container {
        display: flex;
        flex-direction: column;
        padding-bottom: 30px; /* Reducido de 120px */
        gap: 1rem;
    }
 
    .hero-content {
        order: 1;
        padding-right: 0;
        align-items: center;
        text-align: center;
    }
 
    .hero-content h1 {
        font-size: 2rem;
    }
 
    .desktop-btn {
        display: none;
    }
 
    .mobile-btn {
        display: block;
        order: 3;
        width: 80%;
        margin: 0.5rem auto;
    }
 
    /* Features section móvil */
    .features {
        padding-top: 0.1rem;
    }
 
    .features-title {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
 
    .features-subtitle {
        margin: 0 auto 0.5rem;
    }
 
    /* Estilos para tarjetas de beneficios */
    .benefit-card {
        min-height: 450px;
        height: auto;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
 
    .benefit-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1.5rem;
        opacity: 0.7;
    }
 
    .benefit-image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 300px;
        margin: 0 0 0.4rem;
        display: flex;
        justify-content: center;
    }
 
    .benefit-image img {
        width: auto;
        height: 100%;
        max-width: 90%;
        object-fit: contain;
    }
 
    .benefit-content {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        gap: 0.4rem;
    }
 
    /* Ocultar ícono en móvil */
    .benefit-icon {
        display: none;
    }
 
    .benefit-icon-title {
        display: none;
    }
 
    .benefit-card h3 {
        font-size: 1.4rem;
        margin: 0;
        text-align: left;
        line-height: 1.3;
    }
 
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        text-align: left;
        opacity: 0.85;
    }
 
    /* Ajustes del Swiper en móvil */
    .swiper-button-prev {
        left: 0.5rem !important;
    }
 
    .swiper-button-next {
        right: 0.5rem !important;
    }
 
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px !important;
        height: 32px !important;
    }
 }
/* Ajustes para pantallas muy pequeñas */
@media (max-width: 380px) {
    .benefit-card {
        min-height: 400px;
        padding: 1.5rem 1rem;
    }

    .benefit-number {
        font-size: 2rem;
        top: 0.8rem;
        right: 1rem;
    }

    .benefit-image {
        height: 300px;
        margin-bottom: 0.8rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .benefit-icon {
        width: 20px;
        height: 20px;
    }
    .nav-links .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Estilos para la sección About */
.about {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.about-features {
    display: flex;
    gap: 3rem;
    margin: 1rem 0;
}

.about-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.about-cta {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* Media Queries para About */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-content {
        align-items: center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .about-cta {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .about-feature {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

/* Estilos del Footer */
.footer {
    background-color: var(--bg-color);
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 35px;
    width: auto;
}

.footer-brand p {
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-color);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Media Query para el Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 0.5rem;
    }

    .footer-column h4 {
        margin-bottom: 0.5rem;
    }
}

/* Estilos del Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
 }
 
 .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
 }
 
 .modal-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
 }
 
 .modal-header-logo {
    width: 120px;
    height: auto;
 }
 
 .step-indicator {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.7;
 }
 
 .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.5;
    transition: opacity 0.3s;
 }
 
 .modal-close:hover {
    opacity: 1;
 }
 
 .modal-content {
    padding: 2rem;
 }
 
 .modal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
 }
 
 .modal-content p {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
 }
 
 .input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
 }
 
 .input-group input[type="email"] {
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background: white;
 }
 
 .input-group button {
    width: 100%;
 }
 
 .modal-next {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
 }
 
 .modal-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }
 
 .option-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
 }
 
 .option-btn {
    background: var(--bg-color);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
 }
 
 .option-btn:hover {
    background: var(--accent-color);
    transform: translateX(5px);
 }
 
 .option-btn.selected {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 500;
 }
 
 .waitlist-number {
    text-align: center;
    margin: 2rem 0;
 }
 
 .waitlist-number .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
 }
 
 .finish-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
 }
 
 /* Media Queries para el Modal */
 @media (max-width: 768px) {
    .modal {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
 
    .modal-content h2 {
        font-size: 1.5rem;
    }
 
    .option-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
 }