/* ============================
   PÁGINA ÁREAS DE ATUAÇÃO
   ============================ */

/* Botão WhatsApp específico */
.btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    border-color: #25d366 !important;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background: #20b858 !important;
    border-color: #20b858 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

/* Animação pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.areas-detalhadas {
    padding: 80px 0;
    background: #fefefe;
}

.area-detalhada {
    background: linear-gradient(135deg, #fefefe 0%, #faf6f0 100%);
    border-radius: 12px;
    border: 1px solid #f2d9c1;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 163, 115, 0.1);
}

.area-header {
    background: linear-gradient(135deg, #d4a373 0%, #e6c8a8 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.area-header .area-icon {
    font-size: 2.5rem;
}

.area-header h2 {
    color: #2c1810;
    margin: 0;
    font-family: 'DM Serif Display', serif;
}

.area-content {
    padding: 2rem;
}

.area-intro {
    font-size: 1.1rem;
    color: #8b6f47;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.servico-item {
    background: #fefefe;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #f2d9c1;
    transition: all 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 163, 115, 0.2);
    border-color: #d4a373;
}

.servico-item h4 {
    color: #8b6f47;
    margin-bottom: 0.5rem;
    font-family: 'DM Serif Display', serif;
}

.servico-item p {
    color: #2c1810;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

/* ============================
   PÁGINA FAQ
   ============================ */

.faq-content {
    padding: 80px 0;
    background: #fefefe;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #8b6f47;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'DM Serif Display', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.faq-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373, #e6c8a8);
    border-radius: 2px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fefefe;
    border: 1px solid #f2d9c1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 10px rgba(212, 163, 115, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fefefe 0%, #faf6f0 100%);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #faf6f0 0%, #f2d9c1 100%);
}

.faq-question h3 {
    color: #8b6f47;
    margin: 0;
    font-size: 1.1rem;
    font-family: 'DM Serif Display', serif;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4a373;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #2c1810;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    background: #fefefe;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #faf6f0 0%, #f2d9c1 100%);
    border-radius: 12px;
}

.faq-cta h2 {
    color: #8b6f47;
    margin-bottom: 1rem;
    font-family: 'DM Serif Display', serif;
}

.faq-cta p {
    color: #2c1810;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

/* ============================
   RESPONSIVIDADE
   ============================ */

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .area-header {
        flex-direction: column;
        text-align: center;
    }
    
    .area-header .area-icon {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-question h3 {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .areas-detalhadas,
    .faq-content {
        padding: 60px 0;
    }
    
    .area-header,
    .area-content {
        padding: 1.5rem;
    }
    
    .servico-item {
        padding: 1.2rem;
    }
    
    .faq-question,
    .faq-answer p {
        padding: 1.2rem;
    }
    
    .faq-cta {
        padding: 2rem;
    }
} 