/* Estilos Gerais */
:root {
    --primary-color: #1A1A4E;
    --secondary-color: #c9a55c;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
}

section {
    padding: 80px 0;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 10px 0;
    background-color: #fff;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

#header.scrolled .logo img {
    height: 50px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    margin-left: 30px;
}

.menu li a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.menu li a:hover {
    color: var(--primary-color);
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

.btn-contato {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-contato:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.menu-mobile {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 78, 0.8), rgba(26, 26, 78, 0.8)), url('../img/Thalisson\ Costa\ JPG-05.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sobre Section */
.sobre-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-top: 30px;
}

.sobre-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 450px;
}

/* Ajuste para a foto de perfil */
.sobre-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Estilos para a seção de FAQ */
.faq-container {
    margin-top: 50px;
    width: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease;
}

.faq-container.visible {
    opacity: 1;
    visibility: visible;
    height: auto;
    transform: translateY(0);
    margin-bottom: 50px;
}

.faq-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.faq-area {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
    display: none;
}

.faq-area.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.faq-area h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 10px 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Estilos para os cards de área de atuação quando clicados */
.area-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    min-height: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.area-card.active {
    background-color: var(--primary-color);
    color: white;
}

.area-card.active h3,
.area-card.active p,
.area-card.active .area-icon i {
    color: white;
}

.area-card.active {
    background-color: var(--primary-color);
    color: white;
}

.area-card.active h3,
.area-card.active p,
.area-card.active .area-icon i {
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.sobre-text {
    flex: 1.5;
}

.qualificacoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.qualificacao {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.qualificacao:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.qualificacao i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.qualificacao h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.qualificacao p {
    font-size: 14px;
    color: var(--gray-color);
}

/* Áreas de Atuação */
.areas {
    background-color: #f9f9f9;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 30px;
}

.area-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Removido o efeito de sobreposição amarela com texto */

.area-card.active {
    background-color: var(--primary-color);
    color: white;
}

.area-card.active h3,
.area-card.active p,
.area-card.active .area-icon i {
    color: white;
}

.area-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-icon i {
    font-size: 32px;
}

.area-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.area-card p {
    color: var(--gray-color);
    font-size: 15px;
}

/* Diferencial */
.diferencial {
    background: linear-gradient(rgba(26, 26, 78, 0.9), rgba(26, 26, 78, 0.9)), url('img/Thalisson Costa JPG-03.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.diferencial h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.diferencial-item {
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.diferencial-item i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.diferencial-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.diferencial-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* Depoimentos */
.depoimentos {
    background-color: #f9f9f9;
    padding: 100px 0;
}

/* Depoimentos Swiper */
.depoimentos-swiper {
    width: 100%;
    padding-bottom: 60px;
    margin: 0 auto;
    max-width: 1000px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px 0;
}

.depoimento-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 800px;
    width: 90%;
    margin: 20px auto;
    text-align: center;
}

.aspas {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.depoimento-content p {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1.8;
}

.cliente-info {
    margin-top: 20px;
}

.cliente-info h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.cliente-info p {
    font-size: 14px;
    color: var(--gray-color);
}

/* Estilização dos botões de navegação do Swiper */
.depoimentos-swiper .swiper-button-next,
.depoimentos-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.depoimentos-swiper .swiper-button-next:after,
.depoimentos-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.depoimentos-swiper .swiper-button-next:hover,
.depoimentos-swiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.depoimentos-swiper .swiper-button-next {
    right: 10px;
}

.depoimentos-swiper .swiper-button-prev {
    left: 10px;
}

.depoimentos-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.depoimentos-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Contato */
.contato-content {
    display: flex;
    gap: 50px;
}

.contato-info, .contato-form {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    color: var(--gray-color);
}

.social-media {
    display: flex;
    margin-top: 30px;
}

.social-media a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h3,
.footer-areas h3,
.footer-contato h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links ul li,
.footer-areas ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-areas ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-areas ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contato p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contato p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Ajustes para Responsividade

Também vou ajustar a responsividade para garantir que a foto fique bem posicionada em dispositivos móveis:

/* Responsividade */
@media (max-width: 1024px) {
    .sobre-content {
        flex-direction: column;
        align-items: center;
    }
    
    .sobre-img {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .sobre-text {
        width: 100%;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .qualificacoes {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        flex-direction: column;
    }
    
    .contato-info, .contato-form {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.2em;
    margin-right: 10px;
}

.whatsapp-info {
    margin: 20px 0;
}

.whatsapp-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.whatsapp-info p i {
    color: #25D366;
    margin-right: 10px;
}
