/* ===== FAQ - DESKTOP ===== */
@media (min-width: 769px) {
    .faq {
        padding: 180px 80px;
        background: transparent;
        position: relative;
    }

    .faq-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .titulo-faq {
        font-size: 3.5rem;
        color: #433727;
        font-weight: 500;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: -0.04em;
        font-family: "Instrument Serif", serif;
    }

    .subtitulo-faq {
        font-size: 1.2rem;
        color: #5B5B5B;
        margin-bottom: 80px;
        text-align: center;
        font-weight: 400;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-item {
        background: #FFFFFF;
        border: 2px solid rgba(67, 55, 39, 0.08);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active {
        border-color: rgba(67, 55, 39, 0.2);
        box-shadow: 0 8px 30px rgba(67, 55, 39, 0.1);
    }

    .faq-question {
        padding: 30px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(218, 190, 153, 0.05);
    }

    .faq-question h3 {
        font-size: 1.3rem;
        color: #433727;
        font-weight: 500;
        font-family: "Instrument Serif", serif;
        margin: 0;
        flex: 1;
    }

    .faq-question i {
        font-size: 1.2rem;
        color: #433727;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        padding: 0 40px;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 40px 30px;
    }

    .faq-answer p {
        font-size: 1rem;
        color: #5B5B5B;
        line-height: 1.7;
        margin: 0;
    }
}

/* ===== FAQ - MOBILE ===== */
@media (max-width: 768px) {
    .faq {
        padding: 100px 20px;
        background: transparent;
        position: relative;
    }

    .faq-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .titulo-faq {
        font-size: 2.5rem;
        color: #433727;
        font-weight: 500;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: -0.04em;
        font-family: "Instrument Serif", serif;
    }

    .subtitulo-faq {
        font-size: 1rem;
        color: #5B5B5B;
        margin-bottom: 50px;
        text-align: center;
        font-weight: 400;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-item {
        background: #FFFFFF;
        border: 2px solid rgba(67, 55, 39, 0.08);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active {
        border-color: rgba(67, 55, 39, 0.2);
        box-shadow: 0 8px 30px rgba(67, 55, 39, 0.1);
    }

    .faq-question {
        padding: 25px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(218, 190, 153, 0.05);
    }

    .faq-question h3 {
        font-size: 1.1rem;
        color: #433727;
        font-weight: 500;
        font-family: "Instrument Serif", serif;
        margin: 0;
        flex: 1;
    }

    .faq-question i {
        font-size: 1.2rem;
        color: #433727;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 20px 25px;
    }

    .faq-answer p {
        font-size: 0.95rem;
        color: #5B5B5B;
        line-height: 1.7;
        margin: 0;
    }
}

/* ===== FAQ - TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .faq {
        padding: 160px 50px;
    }

    .titulo-faq {
        font-size: 3rem;
    }

    .faq-container {
        max-width: 900px;
    }
}

/* ===== FAQ - MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .faq {
        padding: 80px 15px;
        background: transparent;
        position: relative;
    }

    .faq-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .titulo-faq {
        font-size: 2rem;
        color: #433727;
        font-weight: 500;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: -0.04em;
        font-family: "Instrument Serif", serif;
    }

    .subtitulo-faq {
        font-size: 0.95rem;
        color: #5B5B5B;
        margin-bottom: 40px;
        text-align: center;
        font-weight: 400;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-item {
        background: #FFFFFF;
        border: 2px solid rgba(67, 55, 39, 0.08);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active {
        border-color: rgba(67, 55, 39, 0.2);
        box-shadow: 0 8px 30px rgba(67, 55, 39, 0.1);
    }

    .faq-question {
        padding: 20px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(218, 190, 153, 0.05);
    }

    .faq-question h3 {
        font-size: 1rem;
        color: #433727;
        font-weight: 500;
        font-family: "Instrument Serif", serif;
        margin: 0;
        flex: 1;
    }

    .faq-question i {
        font-size: 1.2rem;
        color: #433727;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 15px 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        color: #5B5B5B;
        line-height: 1.7;
        margin: 0;
    }
}

