/* Variables Louis Vuitton */
:root {
    --lv-primary: #000000;
    --lv-secondary: #B29F77;
    --lv-background: #FFFFFF;
    --lv-text: #1A1A1A;
    --lv-border: rgba(0, 0, 0, 0.12);
    --header-height: 3.5rem;
    --focus-outline-offset: 1px;
}

/* Cambiar esto en el CSS */
.lv-faq {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Estilos del título */
.headline {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.headline h3 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lv-primary);
}

/* Estilos del acordeón */
.accordion-item {
    border-top: 1px solid var(--lv-border);
    position: relative;
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--lv-border);
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--lv-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.025rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos del icono */
.icon-wrapper {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 100vmax;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper::before,
.icon-wrapper::after {
    content: '';
    position: absolute;
    background: var(--lv-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper::before {
    width: 1rem;
    height: 1px;
}

.icon-wrapper::after {
    height: 1rem;
    width: 1px;
}

.accordion-title.active .icon-wrapper::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Estilos del contenido */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-1rem);
}

.accordion-content.active {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 2rem;
}

.accordion-content p {
    color: var(--lv-text);
    font-size: 0.9375rem;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
    padding-right: 3rem;
}

.accordion-content strong {
    font-weight: 400;
}

/* Efectos hover */
.accordion-title:hover {
    color: var(--lv-secondary);
}

.accordion-title:hover .icon-wrapper::before,
.accordion-title:hover .icon-wrapper::after {
    background: var(--lv-secondary);
}

/* Media Queries */
@media (min-width: 768px) {
    .headline h3 {
        font-size: 2.5rem;
    }

    .accordion-title {
        font-size: 1.125rem;
    }

    .accordion-content p {
        font-size: 1rem;
    }
}

@media (hover: hover) {
    .accordion-title:hover .icon-wrapper {
        transform: rotate(180deg);
    }
}

/* Animaciones */
@keyframes expandContent {
    0% {
        opacity: 0;
        transform: translateY(-1rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-content.active {
    animation: expandContent 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}