h1 {
    letter-spacing: -0.04em;
    font-weight: 700;
}

.drop-shadow-2xl {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
}

body {
    background-color: #ffffff;
}

/* --- FAQ REFORMULADO --- */

.faq-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-container {
    overflow: hidden;
}

.faq-answer {
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.icon-plus {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .icon-plus {
    transform: rotate(45deg);
}

.faq-item button span:first-child {
    transform: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

