/* ==========================================
   SEÇÃO FAQ
   ========================================== */
.faq-section {
    max-width: 2400px;
    margin: 10px auto;
    padding: 5px 10px;
    border-radius: 10px;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--dourado);
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--branco-gelo);
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--dourado);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--dourado);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    font-size: 15px;
    margin: 0;
    color: #444;
}

/* ==========================================
   CARDS HORIZONTAIS
   ========================================== */
.card-horizontal {
    display: flex; 
    flex-direction: row; 
    align-items: center;
    min-height: 300px;
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    overflow: hidden;
    justify-self: center;
}

.card-horizontal .card-img {
    flex: 1;
    height: 100%;
}

.card-horizontal .card-content {
    flex: 1.5;
}

.card-horizontal.inverter {
    flex-direction: row-reverse;
}

/* ==========================================
   BOTÕES E REDES SOCIAIS
   ========================================== */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.btn-social {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.btn-social img {
    width: 28px;
    height: 28px;
}

.btn-social:hover {
    transform: scale(1.1);
    background: rgba(198, 168, 107, 0.3);
}

.btn-video {
    display: block;
    margin: 20px auto 0;
    padding: 12px 28px;
    background: linear-gradient(135deg, #c89b6d, #e6c29f);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    width: fit-content;
    transition: 0.3s;
}

.btn-video:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   MODAL DE VÍDEO
   ========================================== */
.modal-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
}

.modal-content video {
    width: 100%;
    display: block;
}

.fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
}

.fechar:hover {
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================== */
@media (max-width: 900px) {
    .faq-title { 
        font-size: 38px; 
    }
    .servicos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-horizontal,
    .card-horizontal.inverter {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .servicos {
        grid-template-columns: 1fr;
    }
    .card-img {
        height: 220px;
    }
    .card-content {
        padding: 20px;
    }
}