:root {
    /* Paleta de Colores */
    --color-lila: #D8BFD8;
    /* Thistle - Un lila suave */
    --color-lila-oscuro: #9B7E9B;
    /* Para textos o contrastes */
    --color-blanco: #FFFFFF;
    --color-menta: #98FF98;
    /* Mint Green */
    --color-menta-suave: #E0F8E0;
    /* Fondo muy suave */
    --color-texto: #333333;
    --color-texto-suave: #666666;
    --color-acento: #8A2BE2;
    /* BlueViolet - Para botones de llamada a la acción fuertes */

    /* Tipografía */
    --fuente-principal: 'Montserrat', sans-serif;
    --fuente-secundaria: 'Lato', sans-serif;

    /* Espaciado */
    --espaciado-seccion: 60px 20px;
    --radio-borde: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fuente-secundaria);
    background-color: var(--color-blanco);
    color: var(--color-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fuente-principal);
    color: var(--color-lila-oscuro);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilidades */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 10px 0;
    width: 100%;
    /* Mobile First: Botones anchos */
}

@media (min-width: 768px) {
    .btn {
        width: auto;
        margin: 10px;
    }
}

.btn-primary {
    background-color: var(--color-lila);
    color: var(--color-texto);
}

.btn-primary:hover {
    background-color: var(--color-lila-oscuro);
    color: var(--color-blanco);
}

.btn-secondary {
    background-color: var(--color-menta);
    color: var(--color-texto);
}

.btn-secondary:hover {
    background-color: #76e076;
}

.btn-accent {
    background-color: var(--color-acento);
    color: var(--color-blanco);
}

.btn-accent:hover {
    background-color: #6a1cb7;
}

.section-padding {
    padding: var(--espaciado-seccion);
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background-color: var(--color-blanco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--fuente-principal);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-lila-oscuro);
}

/* Navegación */
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-weight: 600;
    color: var(--color-texto);
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--color-lila-oscuro);
}

.btn-nav {
    background-color: var(--color-menta);
    padding: 8px 16px;
    border-radius: 20px;
}

.btn-nav:hover {
    background-color: #76e076;
    color: var(--color-texto);
}

/* Menú Hamburguesa (Mobile) */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-texto);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-menta-suave) 0%, var(--color-blanco) 100%);
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-texto-suave);
}

.video-container {
    background-color: #000;
    width: 100%;
    max-width: 800px;
    height: 300px;
    /* Placeholder height */
    margin: 0 auto 30px;
    border-radius: var(--radio-borde);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Secciones Generales */
.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-menta);
    margin: 10px auto 0;
}

/* Quien Soy */
.about-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ddd;
    /* Placeholder */
    margin: 0 auto 20px;
    object-fit: cover;
}

/* El Plan */
.plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.plan-card {
    background: white;
    padding: 30px;
    border-radius: var(--radio-borde);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--color-lila);
}

/* Producto */
.community-section .btn {
    background-color: white;
    color: var(--color-lila-oscuro);
}

/* Testimonios */
.testimonial-card {
    background: var(--color-blanco);
    padding: 30px 20px;
    border-radius: var(--radio-borde);
    margin-bottom: 20px;
    border-left: 4px solid var(--color-menta);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 150px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--color-menta);
    transition: all 0.4s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Efecto Hermoso al Hover */
.testimonial-card:hover .testimonial-img {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--color-lila);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

/* Formulario */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: var(--radio-borde);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--color-menta);
}

/* Responsive Tablet & Desktop */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-container {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .plan-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-content {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .about-img {
        width: 300px;
        height: 300px;
        margin: 0;
    }

    .about-text {
        flex: 1;
        text-align: left;
    }
}

/* Responsive Nav Logic */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        /* Ajustado */
        gap: 0;
        flex-direction: column;
        background-color: var(--color-blanco);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
    }

    .nav-link {
        display: block;
        padding: 10px;
    }
}

/* WhatsApp Button in Footer */
.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white !important;
    /* Force white text */
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Botón Comunidad Hermoso */
.btn-community {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    margin-top: 20px;
}

.btn-community:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    border-color: white;
}

/* Botón Comunidad Hermoso */
.btn-community {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    margin-top: 20px;
}

.btn-community:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    border-color: white;
}