/* Reset y Variables basadas en AgroJAM */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta AgroJAM */
    --primary-green: #42b662;
    --secondary-green: #2d8f41;
    --accent-green: #5bc46d;
    --warm-yellow: #aca94b;
    --light-bg: #f9f9f9;
    --neutral-gray: #8e908b;
    --light-gray: #ccd3cf;
    --earth-brown: #855637;
    --success-green: #2d8f41;
    --warning-orange: #d17315;
    --error-red: #c62828;

    /* Neutrales */
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #8c9ba7;
    --white: #ffffff;
    --off-white: #fefefe;

    /* Sombras profesionales */
    --shadow-light: 0 2px 8px rgba(66, 182, 98, 0.08);
    --shadow-medium: 0 4px 16px rgba(66, 182, 98, 0.12);
    --shadow-heavy: 0 8px 32px rgba(66, 182, 98, 0.16);
    --shadow-glow: 0 0 20px rgba(172, 169, 75, 0.3);

    /* Transiciones suaves mejoradas */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.25, 0.265, 1.25);
}

/* Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f4f0 100%);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Pantalla de carga */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    margin-bottom: 32px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image {
    width: 200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) rotate(1deg) scale(1.05); }
    50% { transform: translateY(0px) rotate(0deg) scale(1); }
    75% { transform: translateY(-5px) rotate(-0.5deg) scale(1.02); }
}

.loader-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(172, 169, 75, 0.8), 0 0 40px rgba(172, 169, 75, 0.6); }
}

.loader-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--warm-yellow), #d4d169);
    border-radius: 2px;
    animation: loadProgress 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(172, 169, 75, 0.8);
}

@keyframes loadProgress {
    0% { width: 0%; }
    30% { width: 20%; }
    60% { width: 60%; }
    90% { width: 95%; }
    100% { width: 100%; }
}

.loader-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Fondo de partículas entrelazadas mejorado */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

#particles-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Efectos de luz amarillos mejorados */
.glow-effect {
    position: relative;
    transition: var(--transition-bounce);
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, rgba(172, 169, 75, 0.4), transparent, rgba(66, 182, 98, 0.3), transparent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
    animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.glow-effect:hover::before {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite, glowRotate 4s linear infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(172, 169, 75, 0.4);
        transform: scale(1) rotate(var(--rotation, 0deg));
    }
    50% {
        box-shadow: 0 0 30px rgba(172, 169, 75, 0.7), 0 0 50px rgba(66, 182, 98, 0.3);
        transform: scale(1.05) rotate(var(--rotation, 180deg));
    }
}

.glow-card {
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.glow-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(172, 169, 75, 0.15) 0%, rgba(66, 182, 98, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.glow-card:hover::after {
    opacity: 1;
    animation: rippleEffect 1.5s ease-out;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.glow-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(5deg);
    box-shadow: var(--shadow-heavy), 0 0 40px rgba(172, 169, 75, 0.5), 0 0 60px rgba(66, 182, 98, 0.3);
}

/* Header profesional con logo horizontal */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
    padding: 8px 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 72px; /* Altura fija para el cálculo */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

.company-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: brandSlideIn 1s ease-out;
}

@keyframes brandSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-container-horizontal {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: linear-gradient(135deg, rgba(66, 182, 98, 0.1), rgba(172, 169, 75, 0.1));
    border-radius: 12px;
    transition: var(--transition-spring);
    border: 1px solid rgba(66, 182, 98, 0.2);
}

.logo-container-horizontal:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: var(--shadow-medium), 0 0 20px rgba(66, 182, 98, 0.4);
    background: linear-gradient(135deg, rgba(66, 182, 98, 0.15), rgba(172, 169, 75, 0.15));
}

.header-logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.brand-text:hover h1 {
    color: var(--secondary-green);
    text-shadow: 0 0 10px rgba(66, 182, 98, 0.3);
}

.brand-text span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: navSlideIn 1s ease-out 0.3s both;
}

@keyframes navSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    background: rgba(66, 182, 98, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(66, 182, 98, 0.2);
    transition: var(--transition-smooth);
}

.page-indicator:hover {
    background: rgba(66, 182, 98, 0.15);
    transform: scale(1.05);
}

.current-page {
    color: var(--primary-green);
    font-weight: 600;
}

.separator {
    color: var(--light-gray);
}

.nav-buttons {
    display: flex;
    gap: 8px;
}

.nav-btn {
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-spring);
    font-size: 14px;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 182, 98, 0.2), transparent);
    transition: var(--transition-smooth);
}

.nav-btn:hover:not(:disabled) {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-medium), 0 0 20px rgba(66, 182, 98, 0.5);
}

.nav-btn:hover:not(:disabled)::before {
    left: 100%;
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* --- ESTILOS DE LAYOUT CORREGIDOS --- */
.presentation-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

.page {
    position: absolute;
    top: 72px; /* Empezar la página debajo de la cabecera */
    left: 0;
    width: 100%;
    height: calc(100vh - 72px); /* Usar el espacio restante */
    opacity: 0;
    transform: translateX(100px) rotateY(25deg) scale(0.8);
    transition: var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 60px; /* Reducir padding vertical */
    visibility: hidden;
    perspective: 1000px;
    filter: blur(5px);
}
/* ------------------------------------ */

.page.active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
    visibility: visible;
    z-index: 10;
    filter: blur(0px);
    animation: pageEnter 1s ease-out;
}

@keyframes pageEnter {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.02);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.page.prev {
    transform: translateX(-100px) rotateY(-25deg) scale(0.8);
    filter: blur(5px);
}

.page.next {
    transform: translateX(100px) rotateY(25deg) scale(0.8);
    filter: blur(5px);
}

.page-content {
    max-width: 1600px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    position: relative;
    overflow-y: auto; /* Permitir scroll si el contenido es muy alto */
    padding: 16px;
}

/* Headers de sección mejorados */
.section-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    flex-shrink: 0; /* Evitar que el header se encoja */
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-heavy);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: var(--shadow-heavy);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        box-shadow: var(--shadow-heavy), 0 0 30px rgba(66, 182, 98, 0.5);
    }
}

.section-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--warm-yellow), var(--primary-green), var(--warm-yellow));
    z-index: -1;
    animation: iconGlow 4s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; transform: rotate(0deg) scale(1); }
    50% { opacity: 0.7; transform: rotate(180deg) scale(1.1); }
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 4px rgba(66, 182, 98, 0.1);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* Página Hero mejorada */
.hero-page {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--accent-green) 100%);
    color: var(--white);
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.hero-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="10" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: backgroundFloat 20s linear infinite;
}

@keyframes backgroundFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-bounce);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.hero-badge:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: titleSlideIn 1s ease-out 0.3s both;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.highlight {
    color: var(--warm-yellow);
    text-shadow: 0 0 25px rgba(172, 169, 75, 0.7), 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        text-shadow: 0 0 25px rgba(172, 169, 75, 0.7), 0 4px 8px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 35px rgba(172, 169, 75, 1), 0 0 50px rgba(172, 169, 75, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: subtitleSlideIn 1s ease-out 0.6s both;
}

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

.meeting-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: infoSlideIn 1s ease-out 0.9s both;
    margin-bottom: 40px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition-bounce);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.info-item:hover {
    opacity: 1;
    transform: scale(1.08) translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-item i {
    color: var(--warm-yellow);
    font-size: 1.1rem;
}

/* Iconos agrícolas flotantes */
.agriculture-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-yellow);
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: floatingIcon 4s ease-in-out infinite;
    animation-delay: var(--delay);
    transition: var(--transition-bounce);
}

@keyframes floatingIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

.floating-icon:hover {
    transform: scale(1.2) rotate(15deg);
    background: rgba(172, 169, 75, 0.3);
    box-shadow: 0 0 30px rgba(172, 169, 75, 0.5);
}

/* Tarjetas de validación */
.validation-card {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: var(--white);
    margin-bottom: 32px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.validation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.validation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.validation-header i {
    font-size: 1.5rem;
    color: var(--warm-yellow);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.validation-header h3 {
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Grid de desafíos optimizado */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.challenge-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border-left: 4px solid var(--primary-green);
    position: relative;
    height: auto;
    min-height: 240px;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(66, 182, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: var(--transition-smooth);
}

.challenge-card:hover::before {
    transform: translate(20px, -20px) scale(1.5);
    background: radial-gradient(circle, rgba(66, 182, 98, 0.2) 0%, transparent 70%);
}

.challenge-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--light-bg), var(--light-gray));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 2;
}

.challenge-icon i {
    font-size: 1.6rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.challenge-card:hover .challenge-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 20px rgba(66, 182, 98, 0.4);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.challenge-card:hover .challenge-icon i {
    color: var(--white);
}

.challenge-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.challenge-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.impact-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-green);
    position: relative;
    z-index: 2;
}

/* Iconos agrícolas en las tarjetas */
.agriculture-accent {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--warm-yellow);
    font-size: 1.2rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.challenge-card:hover .agriculture-accent {
    opacity: 1;
    transform: scale(1.3) rotate(15deg);
    color: var(--primary-green);
}

/* Sección de confirmación */
.confirmation-section {
    text-align: center;
}

.confirmation-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(66, 182, 98, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 20px 28px;
    color: var(--primary-green);
    font-weight: 500;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.confirmation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 182, 98, 0.2), transparent);
    transition: var(--transition-smooth);
}

.confirmation-card:hover::before {
    left: 100%;
}

.confirmation-card:hover {
    transform: scale(1.05);
    background: rgba(66, 182, 98, 0.15);
    border-color: var(--secondary-green);
}

.confirmation-card i {
    font-size: 1.3rem;
    animation: questionBounce 2s ease-in-out infinite;
}

@keyframes questionBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Solución - Intro mejorada */
.solution-intro {
    margin-bottom: 32px;
}

.intro-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(66, 182, 98, 0.05);
    border-left: 4px solid var(--primary-green);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-primary);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.intro-quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--warm-yellow));
    transition: var(--transition-smooth);
}

.intro-quote:hover::after {
    width: 100%;
}

.intro-quote:hover {
    background: rgba(66, 182, 98, 0.1);
    transform: translateX(10px);
}

.intro-quote i {
    color: var(--warm-yellow);
    font-size: 1.5rem;
    animation: lightbulbGlow 3s ease-in-out infinite;
}

@keyframes lightbulbGlow {
    0%, 100% {
        color: var(--warm-yellow);
        text-shadow: 0 0 10px rgba(172, 169, 75, 0.5);
    }
    50% {
        color: #d4d169;
        text-shadow: 0 0 20px rgba(172, 169, 75, 0.8), 0 0 30px rgba(172, 169, 75, 0.4);
    }
}

.vision-statement {
    text-align: center;
    font-size: 1.15rem;
    color: var(--primary-green);
    background: linear-gradient(135deg, rgba(66, 182, 98, 0.1), rgba(172, 169, 75, 0.1));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(66, 182, 98, 0.2);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.vision-statement::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), var(--warm-yellow), var(--primary-green));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.vision-statement:hover::before {
    opacity: 0.3;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vision-statement:hover {
    transform: scale(1.02);
    color: var(--secondary-green);
    background: linear-gradient(135deg, rgba(66, 182, 98, 0.15), rgba(172, 169, 75, 0.15));
}

/* Showcase de módulos optimizado */
.modules-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.module-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--light-gray);
    position: relative;
    height: auto;
    min-height: 220px;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(66, 182, 98, 0.1) 0%, transparent 70%);
    transition: var(--transition-smooth);
    transform: scale(0);
}

.module-card:hover::before {
    transform: scale(2);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.module-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
}

.module-card:hover .module-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: var(--shadow-heavy), 0 0 25px rgba(66, 182, 98, 0.5);
}

.module-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.module-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.module-benefits {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.benefit-tag {
    background: rgba(66, 182, 98, 0.1);
    color: var(--primary-green);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(66, 182, 98, 0.2);
    transition: var(--transition-smooth);
}

.module-card:hover .benefit-tag {
    background: rgba(66, 182, 98, 0.2);
    transform: scale(1.05);
}

/* Iconos agrícolas en módulos */
.module-agriculture-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    color: var(--warm-yellow);
    font-size: 1.5rem;
    opacity: 0.4;
    transition: var(--transition-spring);
}

.module-card:hover .module-agriculture-icon {
    opacity: 1;
    transform: scale(1.3) rotate(20deg);
    color: var(--primary-green);
}

/* Visión futura mejorada */
.future-vision {
    margin-top: 32px;
}

.vision-card {
    background: linear-gradient(135deg, rgba(66, 182, 98, 0.95), rgba(45, 143, 65, 0.95));
    border-radius: 20px;
    padding: 32px;
    color: var(--white);
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 30 Q30 20 40 30 T60 30" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/><path d="M70 60 Q80 50 90 60 T110 60" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></svg>') repeat;
    opacity: 0.3;
    animation: visionPattern 15s linear infinite;
}

@keyframes visionPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.vision-header i {
    font-size: 1.6rem;
    color: var(--warm-yellow);
    animation: crystalBallSpin 4s linear infinite;
}

@keyframes crystalBallSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.vision-header h3 {
    font-size: 1.3rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.vision-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.efficiency-highlight {
    background: rgba(172, 169, 75, 0.2);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    color: var(--warm-yellow);
    font-size: 1.1rem;
    border: 1px solid rgba(172, 169, 75, 0.3);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.vision-agriculture-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.vision-agriculture-icons i {
    font-size: 1.5rem;
    color: var(--warm-yellow);
    opacity: 0.7;
    animation: visionIconFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

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

.vision-agriculture-icons i:nth-child(1) { --i: 0; }
.vision-agriculture-icons i:nth-child(2) { --i: 1; }
.vision-agriculture-icons i:nth-child(3) { --i: 2; }

/* POC - Explicación de enfoque mejorada */
.approach-explanation {
    margin-bottom: 24px;
}

.approach-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-gray);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 182, 98, 0.1), transparent);
    transition: var(--transition-slow);
}

.approach-card:hover::before {
    width: 100%;
}

.approach-card i {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    animation: shieldPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
        color: var(--primary-green);
    }
    50% {
        transform: scale(1.15);
        color: var(--secondary-green);
        filter: drop-shadow(0 0 10px rgba(66, 182, 98, 0.5));
    }
}

.approach-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.approach-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.risk-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(66, 182, 98, 0.1);
    color: var(--primary-green);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(66, 182, 98, 0.2);
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.risk-badge:hover {
    background: rgba(66, 182, 98, 0.15);
    transform: scale(1.05);
    border-color: var(--primary-green);
}

.risk-badge i {
    color: var(--primary-green);
    margin: 0;
    font-size: 1rem;
}

/* Detalles POC optimizado */
.poc-details {
    margin-bottom: 24px;
}

/* --- ESTILO DE CUADRÍCULA CORREGIDO --- */
.poc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.poc-item {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-spring);
    border: 1px solid var(--light-gray);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.poc-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--warm-yellow));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.poc-item:hover::before {
    transform: scaleX(1);
}

.poc-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.poc-item:hover .poc-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: var(--shadow-heavy), 0 0 25px rgba(66, 182, 98, 0.5);
}

.poc-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.poc-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Iconos agrícolas en POC */
.poc-agriculture-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: var(--warm-yellow);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: var(--transition-spring);
}

.poc-item:hover .poc-agriculture-icon {
    opacity: 1;
    transform: scale(1.4) rotate(25deg);
    color: var(--primary-green);
}

/* Sección de inversión con efecto de reducción de precio mejorado */
.investment-section {
    margin-bottom: 24px;
}

.investment-card {
    background: linear-gradient(135deg, var(--white), var(--light-bg));
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-green);
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
}

.price-reduction-card {
    background: linear-gradient(135deg, var(--white), rgba(172, 169, 75, 0.05));
    border: 2px solid var(--warm-yellow);
}

.price-reduction-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(172, 169, 75, 0.1), transparent);
    animation: priceShimmer 4s linear infinite;
}

@keyframes priceShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.investment-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.price-container {
    position: relative;
    margin-bottom: 16px;
    z-index: 1;
}

.old-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.old-price .amount {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
}

.strikethrough {
    position: relative;
}

.strikethrough::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--error-red);
    transform: rotate(-5deg);
    animation: strikethroughDraw 1s ease-out 0.5s both;
}

@keyframes strikethroughDraw {
    from { width: 0; left: 50%; }
    to { width: 100%; left: 0; }
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: priceHighlight 3s ease-in-out infinite;
}

@keyframes priceHighlight {
    0%, 100% {
        text-shadow: 0 0 20px rgba(172, 169, 75, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 35px rgba(172, 169, 75, 0.8), 0 0 50px rgba(172, 169, 75, 0.4);
        transform: scale(1.08);
    }
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, var(--error-red), #d32f2f);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    animation: badgeBounce 1s ease-out 1s both;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
    z-index: 2;
}

@keyframes badgeBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(15deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.3) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.price-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.value-statement {
    background: rgba(66, 182, 98, 0.1);
    border-left: 4px solid var(--primary-green);
    padding: 16px;
    border-radius: 8px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

/* Página de contacto mejorada */
.success-banner {
    margin-bottom: 32px;
}

.success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="75" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: successPattern 10s linear infinite;
}

@keyframes successPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.success-content i {
    font-size: 2rem;
    color: var(--warm-yellow);
    animation: successCheckBounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes successCheckBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 10px rgba(172, 169, 75, 0.8)); }
}

.success-content h3 {
    font-size: 1.3rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Timeline de próximos pasos mejorada */
.next-steps {
    background: rgba(66, 182, 98, 0.05);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 32px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 182, 98, 0.1), rgba(172, 169, 75, 0.05));
    opacity: 0;
    transition: var(--transition-smooth);
}

.next-steps:hover::before {
    opacity: 1;
}

.next-steps h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--warm-yellow));
    z-index: 0;
    border-radius: 2px;
    animation: timelineProgress 3s ease-in-out infinite;
}

@keyframes timelineProgress {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; box-shadow: 0 0 10px rgba(66, 182, 98, 0.5); }
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--warm-yellow), var(--primary-green));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number::before {
    opacity: 0.3;
    animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.timeline-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: var(--shadow-heavy), 0 0 20px rgba(66, 182, 98, 0.5);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* Iconos agrícolas en steps */
.step-agriculture-icon {
    color: var(--warm-yellow);
    font-size: 1rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-agriculture-icon {
    opacity: 1;
    transform: scale(1.3) rotate(15deg);
    color: var(--primary-green);
}

/* Sección de compromiso mejorada */
.commitment-section {
    text-align: center;
}

.commitment-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(172, 169, 75, 0.1), rgba(66, 182, 98, 0.1));
    border: 2px solid var(--warm-yellow);
    border-radius: 20px;
    padding: 32px;
    color: var(--text-primary);
    max-width: 600px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(172, 169, 75, 0.1), transparent, rgba(66, 182, 98, 0.1), transparent);
    animation: commitmentShimmer 5s linear infinite;
}

@keyframes commitmentShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.commitment-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--warm-yellow), #b8b55a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-heavy);
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(172, 169, 75, 0.6);
}

.commitment-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin: 0;
    position: relative;
    z-index: 1;
}

.commitment-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.commitment-agriculture-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.commitment-agriculture-icons i {
    font-size: 1.3rem;
    color: var(--warm-yellow);
    opacity: 0.8;
    animation: commitmentIconFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
    transition: var(--transition-smooth);
}

@keyframes commitmentIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(10deg); }
}

.commitment-agriculture-icons i:nth-child(1) { --i: 0; }
.commitment-agriculture-icons i:nth-child(2) { --i: 1; }
.commitment-agriculture-icons i:nth-child(3) { --i: 2; }
.commitment-agriculture-icons i:nth-child(4) { --i: 3; }

.commitment-card:hover .commitment-agriculture-icons i {
    color: var(--primary-green);
    transform: scale(1.2);
}

/* Indicadores discretos mejorados */
.page-indicators {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 182, 98, 0.2);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(66, 182, 98, 0.3);
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--warm-yellow));
    opacity: 0;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--primary-green);
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(66, 182, 98, 0.6);
}

.indicator.active::before {
    opacity: 0.3;
    animation: indicatorGlow 2s ease-in-out infinite;
}

@keyframes indicatorGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}

.indicator:hover:not(.active) {
    background: rgba(66, 182, 98, 0.6);
    transform: scale(1.3);
}

/* Responsive para pantallas ultra anchas */
@media (min-width: 1920px) {
    .page-content {
        max-width: 1800px;
    }

    .modules-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

/* Ajustes para pantallas menores */
@media (max-width: 1400px) {
    .modules-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .poc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .agriculture-icons {
        gap: 40px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 1200px) {
    .header-content {
        padding: 0 20px;
    }

    .page {
        padding: 20px 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .modules-showcase,
    .challenges-grid,
    .poc-grid {
        grid-template-columns: 1fr;
    }

    .meeting-info {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 24px;
    }

    .timeline-steps::before {
        display: none;
    }

    .agriculture-icons {
        gap: 20px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* === ESTILOS PARA LAS PARTÍCULAS DEL CARGADOR === */
.loader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: rgba(172, 169, 75, 0.6);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation-name: particleFloat;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.particle.medium {
    width: 15px;
    height: 15px;
}

.particle.large {
    width: 20px;
    height: 20px;
}

@keyframes particleFloat {
    to {
        transform: translateY(-105vh);
        opacity: 0;
    }
}