/* Estilos UI/UX Profesionales para Index */
:root {
    --primary: #A4B25D;
    --primary-dark: #8a9848;
    --primary-light: rgba(164, 178, 93, 0.1);
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #f8f9fa;
    --border: #e5e5e5;
}

/* Hero Section Mejorado */
.hero-section {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--primary);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(164, 178, 93, 0.4);
    color: #fff;
}

/* Secciones */
.main-section {
    padding: 50px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Video Section Mejorada */
.video-section {
    background: linear-gradient(135deg, rgba(164, 178, 93, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 32px;
    padding: 60px 60px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(164, 178, 93, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.video-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(164, 178, 93, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(164, 178, 93, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.video-text {
    padding: 0;
    position: relative;
}

.video-logo-wrapper {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 24px;
}

.video-logo {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.video-logo-wrapper:hover .video-logo {
    transform: scale(1.1) rotate(5deg);
}

.video-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.video-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.video-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.video-description {
    font-size: 1.1875rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-top: 24px;
}

.video-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(164, 178, 93, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.video-feature:hover {
    background: rgba(164, 178, 93, 0.15);
    transform: translateX(5px);
}

.video-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-feature-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Why Choose Us Section */
.why-section {
    background: #fff;
    border-radius: 24px;
    padding: 60px 60px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

.why-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.why-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* News Section Mejorada */
.news-section {
    padding: 50px 0;
}

.news-carousel-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Partners Section */
.partners-section {
    background: var(--bg-light);
    padding: 50px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-width: 150px;
    height: auto;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* Responsive */
@media (max-width: 992px) {
    .video-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-section {
        padding: 50px 40px;
    }

    .why-section {
        padding: 40px;
    }

    .video-features {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 400px;
    }

    .main-section {
        padding: 40px 0;
    }

    .video-section {
        padding: 40px 24px;
        margin: 20px 0;
        border-radius: 24px;
    }

    .video-content {
        gap: 40px;
    }

    .video-features {
        flex-direction: column;
        gap: 12px;
    }

    .video-feature {
        width: 100%;
    }

    .why-section {
        padding: 30px 20px;
        margin: 20px 0;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

