/* Personalización Nicolini */

:root {
    --color-green: #15803d;
    --color-green-light: #f0fdf4;
    --color-orange: #f97316;
}

/* Animaciones sutiles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-page section {
    animation: fadeIn 0.6s ease-out;
}

/* Botones con hover deportivo */
button {
    transition: all 0.3s ease;
}

button:active {
    transform: scale(0.98);
}

/* Details (FAQ) con animación */
details {
    transition: all 0.3s ease;
}

details[open] summary {
    color: var(--color-green);
    font-weight: bold;
}

/* Responsive improvements */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
}
