/* ===================================
   CSS Variables & Reset
   =================================== */

:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    
    /* Neutrals */
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --gray-dark: #334155;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --light: #f1f5f9;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:not(.btn-primary):hover {
    color: var(--primary-color);
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-link.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.9;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-jaguar-bg {
    position: absolute;
    top: 60%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    z-index: 0;
    opacity: 0.45;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    pointer-events: none;
}

.jaguar-symbol {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    animation: jaguar-pulse 3.5s ease-in-out infinite;
    filter: brightness(1.5) contrast(1.3) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes jaguar-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.55;
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #fbbf24;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 1;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9), 
                 0 2px 8px rgba(0, 0, 0, 0.8),
                 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(251, 191, 36, 0.2);
    color: #fef3c7;
    border-color: #fbbf24;
    border-width: 2px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: #fbbf24;
    color: #1e3a8a;
    border-color: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: calc(50% + 13px);
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-jaguar-bg {
        width: 700px;
        height: 700px;
        opacity: 0.35;
        top: 60%;
        left: 40%;
    }
}

@media (max-width: 480px) {
    .hero-jaguar-bg {
        width: 500px;
        height: 500px;
        opacity: 0.30;
        top: 55%;
        left: 45%;
    }
}

/* ===================================
   Section Styles
   =================================== */

.section {
    padding: var(--spacing-xl) 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-dark .section-label,
.section-gradient .section-label {
    color: var(--accent-color);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-description,
.section-gradient .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Origen Section
   =================================== */

.origen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.origen-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.origen-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.nahuatl-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.nahuatl-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nahuatl-box p {
    color: #f3f4f6;
    line-height: 1.6;
}

.nahuatl-box ul {
    margin-top: 1rem;
}

.nahuatl-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e5e7eb;
}

.nahuatl-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #fbbf24;
}

.nahuatl-box li strong {
    color: var(--white);
    font-weight: 700;
}

.origen-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cultural-symbol {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    animation: pulse 3s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.1), 
                0 0 0 20px rgba(16, 185, 129, 0.1),
                var(--shadow-2xl);
    border: 3px solid rgba(37, 99, 235, 0.2);
}

.symbol-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

/* Bambú Slider Styles */
.bambu-slider-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.bambu-slider {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.bambu-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.bambu-slide.active {
    opacity: 1;
}

.bambu-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.bambu-slide .slide-label {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--primary-600);
    background: var(--gray-50);
    margin: 0;
    font-size: 0.9rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-btn {
    background: var(--primary-600);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-700);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-600);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-500);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.1), 
                    0 0 0 20px rgba(16, 185, 129, 0.1),
                    var(--shadow-2xl);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0.15), 
                    0 0 0 30px rgba(16, 185, 129, 0.15),
                    var(--shadow-2xl);
    }
}

@media (max-width: 768px) {
    .origen-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cultural-symbol {
        width: 200px;
        height: 200px;
    }
    
    .bambu-slider-container {
        max-width: 100%;
    }
    
    .bambu-slider {
        height: 300px;
    }
    
    .bambu-slide img {
        height: 200px;
    }
    
    .bambu-slide .slide-label {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* ===================================
   Mission & Vision Cards
   =================================== */

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--dark-lighter);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-2xl);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--white);
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Valores Grid
   =================================== */

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

.valor-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.valor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2xl);
}

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

.valor-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
}

/* ===================================
   Asociados Grid
   =================================== */

.asociados-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.asociado-card-main {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.asociado-card-main:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.asociado-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.asociado-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.asociado-card-main h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.asociado-card-main p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Almas Mater Section */
.almas-mater-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.almas-mater-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.almas-mater-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.alma-mater-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition);
}

.alma-mater-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.alma-mater-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

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

/* ===================================
   Objetivos Grid
   =================================== */

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

.objetivo-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.objetivo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.objetivo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.objetivo-card:hover::before {
    transform: scaleX(1);
}

.objetivo-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.objetivo-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.objetivo-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===================================
   Agenda 2030 Grid
   =================================== */

.agenda-logo {
    margin: 2rem auto 3rem;
    max-width: 100%;
    width: 100%;
}

.agenda-logo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    display: block;
}

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

.agenda-card {
    background: var(--dark-lighter);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.agenda-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.agenda-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.agenda-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.agenda-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ===================================
   Estrategia Visual Grid
   =================================== */

.estrategia-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
}

.estrategia-visual-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.estrategia-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.estrategia-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.estrategia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.estrategia-visual-card:hover .estrategia-image img {
    transform: scale(1.1);
}

.estrategia-content {
    padding: 2rem;
}

.estrategia-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

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

.estrategia-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.estrategia-content li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
}

.estrategia-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.estrategia-result {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.estrategia-logo-corner {
    position: absolute;
    top: -80px;
    right: 0;
    width: 150px;
    opacity: 0.3;
}

.estrategia-logo-corner img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .estrategia-visual-grid {
        grid-template-columns: 1fr;
    }
    
    .estrategia-logo-corner {
        width: 100px;
        top: -60px;
    }
}

/* ===================================
   Beneficios Grid
   =================================== */

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

.beneficio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.beneficio-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.fase-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.beneficio-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.beneficio-card ul {
    list-style: none;
}

.beneficio-card li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.beneficio-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===================================
   CTA Section
   =================================== */

.section-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-light);
    line-height: 1.7;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
}

.footer-bottom p {
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===================================
   Scroll Animations
   =================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}