   /* ===== RESET Y VARIABLES GLOBALES ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --lime: #84cc16;
        --lime-dark: #65a30d;
        --graphite: #3f3f46;
        --dark: #18181b;
        --white: #ffffff;
        --gray-light: #f4f4f5;
        --gray-medium: #a1a1aa;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* ===== ANIMACIONES GLOBALES ===== */
    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(-50px, 50px) rotate(180deg); }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===== NAVEGACIÓN ===== */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(24, 24, 27, 0.95);
        backdrop-filter: blur(10px);
        z-index: 10000;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
    }

    nav.scrolled {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--white);
        position: relative;
        z-index: 10001;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .logo-image {
        height: 60px;
        width: auto;
        transition: transform 0.3s ease;
    }

    .logo-image:hover {
        transform: scale(1.05);
    }

    .logo-text {
        color: var(--white);
    }

    .logo-grow {
        color: var(--lime);
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s;
        font-weight: 500;
    }

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

    .login-btn {
        background: var(--lime);
        color: var(--dark) !important;
        padding: 0.5rem 1.5rem !important;
        border-radius: 25px;
        margin-left: 1rem;
        transition: all 0.3s ease;
        font-weight: 600 !important;
    }

    .login-btn:hover {
        background: var(--lime-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(132, 204, 22, 0.3);
    }

    .mobile-menu {
        display: none;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }
/* ===== NAVEGACIÓN RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu {
        display: block !important; /* Forzar que se muestre en móvil */
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 10002;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        border-top: 1px solid var(--graphite);
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--graphite);
        padding: 1rem 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .login-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
        padding: 1rem !important;
    }

    .logo-image {
        height: 35px;
    }

    .logo {
        font-size: 1.2rem;
    }
}
    /* ===== HERO SECTION ===== */
    .hero {
        background: linear-gradient(135deg, var(--dark) 0%, var(--graphite) 100%);
        color: var(--white);
        padding: 10rem 2rem 6rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(132, 204, 22, 0.1) 0%, transparent 70%);
        animation: float 20s ease-in-out infinite;
        z-index: 0;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(132, 204, 22, 0.05) 0%, transparent 70%);
        animation: float 15s ease-in-out infinite reverse;
        z-index: 0;
    }

    .hero-content {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        animation: fadeInUp 0.8s ease;
    }

    .hero h1 .highlight {
        color: var(--lime);
    }

    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        color: var(--gray-light);
        animation: fadeInUp 0.8s ease 0.2s backwards;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease 0.4s backwards;
    }

    /* ===== BOTONES BASE ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px; /* ← ESTO FALTA para que sea redondeado */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

/* Botón primario (Comenzar a Controlar) */
.btn-primary {
    background: var(--lime);
    color: var(--dark);
    border: 2px solid var(--lime);
}

.btn-primary:hover {
    background: transparent;
    color: var(--lime);
}

/* Botón secundario BASE - Estructura común */
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;           /* ← Mismo padding */
    border-radius: 8px;           /* ← Mismo border-radius */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent; /* ← Base transparente */
}

/* Variante outline (para hero) */
.btn-secondary.outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary.outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Variante filled (para contacto) */
.btn-secondary.filled {
    background: var(--lime);
    color: var(--dark);
    border: 2px solid var(--lime);
}

.btn-secondary.filled:hover {
    background: transparent;
    color: var(--lime);
}

 /* ===== PRODUCTOS - RESPONSIVE COMPLETO ===== */
.products {
    background: var(--gray-light);
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .products {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {
    .products {
        padding: 5rem 2rem;
    }
}
/* AÑADIR MÁRGEN SUPERIOR AL SUBTÍTULO */
.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 4rem; /* Aumentado de 3rem a 4rem */
    color: var(--graphite);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2; /* Asegurar que esté por encima */
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 5rem; /* Más espacio en tablet */
    }
}

@media (min-width: 1024px) {
    .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem; /* En desktop puede volver a 3rem */
    }
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Grid por debajo del subtítulo */
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem; /* Aumentado de 2rem a 3rem en tablet */
        margin-top: 1rem; /* Espacio extra arriba de la grid */
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 2rem; /* En desktop puede volver a 2rem */
        margin-top: 0;
    }
}

/* CONTENEDOR PARA CADA TARJETA */
.product-card-wrapper {
    padding: 15px 0;
    margin: -8px 0;
}

@media (min-width: 768px) {
    .product-card-wrapper {
        padding: 25px 0; /* Aumentado de 20px a 25px en tablet */
        margin: -12px 0; /* Ajustado para compensar */
    }
}

@media (min-width: 1024px) {
    .product-card-wrapper {
        padding: 20px 0; /* Volver a 20px en desktop */
        margin: -10px 0;
    }
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 768px) {
    .product-card {
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .product-card:hover {
        transform: translateY(-8px); /* Reducido de 10px a 8px en tablet */
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
}

@media (min-width: 1024px) {
    .product-card:hover {
        transform: translateY(-10px); /* 10px solo en desktop */
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    }
}

.product-image {
    height: 200px;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 1px solid var(--gray-light);
}

@media (min-width: 768px) {
    .product-image {
        height: 250px;
        padding: 35px;
    }
}

@media (min-width: 1024px) {
    .product-image {
        height: 300px;
        padding: 40px;
    }
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

@media (min-width: 768px) {
    .product-card:hover .product-img {
        transform: scale(1.05);
    }
}

.product-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--lime);
    color: var(--dark);
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

@media (min-width: 768px) {
    .product-tag {
        top: 1rem;
        right: 1rem;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
    }
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .product-content {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .product-content {
        padding: 2.5rem 2rem;
    }
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .product-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .product-content h3 {
        font-size: 1.8rem;
    }
}

.product-content p {
    color: var(--graphite);
    margin-bottom: 1.2rem;
    flex-grow: 1;
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .product-content p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
        font-size: 1rem;
    }
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .features-list {
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-list {
        margin-bottom: 2.5rem;
    }
}

.features-list li {
    padding: 0.4rem 0;
    color: var(--graphite);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.3;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .features-list li {
        padding: 0.5rem 0;
        line-height: 1.4;
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .features-list li {
        padding: 0.6rem 0;
        font-size: 1rem;
    }
}

.features-list li::before {
    content: '✓';
    color: var(--lime);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .features-list li::before {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .features-list li::before {
        font-size: 1.2rem;
    }
}

.price {
    font-size: 1.8rem;
    color: var(--lime);
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
    background: rgba(132, 204, 22, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(132, 204, 22, 0.1);
}

@media (min-width: 768px) {
    .price {
        font-size: 2rem;
        margin: 1.2rem 0;
        padding: 0.9rem;
        border-radius: 9px;
    }
}

@media (min-width: 1024px) {
    .price {
        font-size: 2.2rem;
        margin: 1.5rem 0;
        padding: 1rem;
        border-radius: 10px;
    }
}

/* Botones específicos de productos */
.product-card .btn-primary {
    background: var(--lime);
    color: var(--dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    width: 100%;
}

@media (min-width: 768px) {
    .product-card .btn-primary {
        padding: 0.9rem 1.8rem;
        border-radius: 9px;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .product-card .btn-primary {
        padding: 1rem 2rem;
        border-radius: 10px;
    }
}

.product-card .btn-primary:hover {
    background: var(--lime-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(132, 204, 22, 0.3);
}

/* Títulos de sección responsive */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--graphite);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
}

/* ===== SECCIÓN QUIÉNES SOMOS ===== */
.about-section {
    background: var(--white);
    padding: 5rem 2rem;
    position: relative;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header .highlight {
    color: var(--lime);
}

/* Intro Text */
.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--graphite);
}

.intro-text strong {
    color: var(--dark);
}

/* Essence Block */
.essence-block {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--lime);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.essence-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.essence-block h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.essence-block p {
    color: var(--graphite);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight-box {
    background: var(--lime);
    color: var(--dark);
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(132, 204, 22, 0.2);
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card {
    border-top: 4px solid var(--lime);
}

.vision-card {
    border-top: 4px solid var(--graphite);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--graphite);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Target Audience - Corrección para Tablet */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px; /* Límite máximo para el grid */
    margin: 0 auto; /* Centrar el grid */
}

.audience-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 400px; /* Límite máximo por card */
    margin: 0 auto; /* Centrar cards en tablets */
}

.audience-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    max-width: 100%; /* Asegura que no sobrepase la card */
}

.audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%; /* Doble seguridad */
}

.audience-card:hover .audience-image img {
    transform: scale(1.05); /* Efecto zoom al hover */
}

.target-audience h3 {
    text-align: center;
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.audience-intro {
    text-align: center;
    color: var(--graphite);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    border-color: var(--lime);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.1);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h4 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.audience-card p {
    color: var(--graphite);
    line-height: 1.6;
}
/* ===== TABLET SPECIFIC FIXES ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr); /* Fijar 2 columnas en tablet */
        max-width: 800px;
        gap: 1.5rem;
    }
    
    .audience-card {
        max-width: 350px; /* Un poco más pequeño en tablet */
        margin: 0 auto;
    }
    
    .audience-image {
        height: 180px; /* Reducir altura en tablet */
    }
    
    /* Opcional: Para 3 cards en tablet, hacerlas más compactas */
    .audience-card:nth-child(3) {
        grid-column: 1 / -1; /* Hacer que la 3ra card ocupe todo el ancho */
        max-width: 400px;
        justify-self: center;
    }
}
@media (max-width: 768px) {
    .audience-image {
        height: 160px; /* Más pequeño en móviles */
    }
}

@media (max-width: 480px) {
    .audience-image {
        height: 140px;
    }
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--graphite) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    color: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--lime);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3);
}

.founder-text h3 {
    color: var(--lime);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.founder-text p {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.founder-quote {
    background: rgba(132, 204, 22, 0.1);
    border-left: 4px solid var(--lime);
    padding: 1.5rem;
    margin: 2rem 0 0 0;
    border-radius: 10px;
    font-style: italic;
    line-height: 1.7;
}

.founder-quote em {
    color: var(--lime);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gray-light);
    border-radius: 15px;
}

.about-cta h3 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--graphite);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-header {
        margin-bottom: 3rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .essence-block {
        padding: 2rem 1.5rem;
    }

    .essence-block h3 {
        font-size: 1.5rem;
    }

    .essence-block p {
        font-size: 1rem;
    }

    .highlight-box {
        font-size: 1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .founder-section {
        padding: 2.5rem 1.5rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .founder-img {
        width: 150px;
        height: 150px;
    }

    .founder-quote {
        font-size: 0.95rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .essence-block {
        padding: 1.5rem 1rem;
    }

    .essence-icon {
        font-size: 2.5rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .audience-icon {
        font-size: 2.5rem;
    }

    .founder-section {
        padding: 2rem 1rem;
    }

    .founder-img {
        width: 120px;
        height: 120px;
    }

    .about-cta {
        padding: 1.5rem 1rem;
    }
}

/* ===== SECCIÓN CONTACTO ===== */
.contact-section {
    background: var(--gray-light);
    padding: 5rem 2rem;
    position: relative;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .highlight {
    color: var(--lime);
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--lime);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.15);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.method-subtitle {
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.method-link {
    color: var(--graphite);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: var(--lime);
}

.method-text {
    color: var(--graphite);
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-checkbox label {
    margin: 0;
    font-weight: normal;
    color: var(--graphite);
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h3 {
    text-align: center;
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--lime);
}

.faq-item h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--graphite);
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--graphite) 100%);
    border-radius: 20px;
    color: var(--white);
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-secondary {
    background: var(--lime);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--lime);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--lime);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-method {
        padding: 2rem 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 2rem 1.5rem;
    }

    .contact-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-method {
        padding: 1.5rem 1rem;
    }

    .method-icon {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }

    .contact-cta {
        padding: 1.5rem 1rem;
    }
}

/* Botones de compartir */
.social-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.share-btn:hover {
    transform: scale(1.1);
}

.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }

/* Responsive */
@media (max-width: 768px) {
    .social-share {
        left: 10px;
    }
    .share-btn {
        width: 45px;
        height: 45px;
    }
}