/* CSS Reset & Variáveis */
:root {
    --primary-color: #be9259; /* Rosa Suave */
    --secondary-color: #f5ede2; /* Branco Gelo */
    --light-gray: #EAEAEA;
    --text-color: #616161;
    --title-color: #333333;
    --white: #FFFFFF;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    font-weight: 400; /* <<---- ADICIONE ESTA LINHA */
}

/* Estrutura e Estilos Gerais */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: var(--font-title);
    color: var(--title-color);
    font-weight: 800; /* <<---- MUDE DE 700 PARA 800 */
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #9c7149;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Header */
#header {
    width: 100%;
    background-color: var(--white); /* A cor de fundo é esta (white) */
    /* ... o resto do código ... */
    width: 100%;
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

#header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--title-color);
    text-decoration: none;
    
    /* ESSENCIAIS PARA O ALINHAMENTO */
    display: flex;             /* Coloca os elementos lado a lado */
    align-items: center;       /* Centraliza verticalmente o ícone e o texto */
    gap: 10px;    
    height: 30px             /* Espaço entre o ícone e o texto */
}

.logo-icon {
    height: 50px; 
    width: auto; 
    /* ADICIONE ESTA LINHA: Define o fundo da imagem para a mesma cor do cabeçalho */
    background-color: var(--white); 
}



.logo-text {
    font-family: var(--font-title); /* Mantenha a fonte */
    font-size: 28px;               /* Altere este valor para o tamanho do nome */
    /* Garante que o texto se alinhe bem com o ícone, se houver problemas de base-line */
    line-height: 1; 
}



.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

/* Hero Section */
#hero {
    background-color: var(--secondary-color);
    height: 100vh;
    display: flex;
    /* Altera o alinhamento para o topo ficar mais visível */
    align-items: center; 
    /* Se a altura da tela for pequena, mude para: align-items: flex-start; e adicione um padding-top grande */
    text-align: center;
    padding-top: 100px; /* Aumentado para dar mais respiro ao cabeçalho */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-content img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: -05px; /* VALOR A SER ALTERADO */
    border: 5px solid var(--white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* Sobre */
#sobre {
    background-color: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.sobre-content img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.certificados {
    margin-top: 30px;
}

.certificados h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--title-color);
    margin-bottom: 15px;
}

.certificados p {
    font-style: italic;
}

/* Serviços */
#servicos {
    background-color: var(--secondary-color);
}

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

.servico-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.servico-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Depoimentos */
.depoimentos-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.depoimento {
    padding: 20px;
}

.depoimento blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.depoimento blockquote::before {
    content: '“';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.2;
}

.depoimento cite {
    font-weight: 700;
    color: var(--title-color);
}

/* Contato */
#contato {
    background-color: var(--secondary-color);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--light-gray);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contato-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contato-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contato-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    margin-top: 20px;
}

.whatsapp-btn:hover {
     background-color: #1EBE57;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--light-gray);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

footer h4 {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 10px;
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
}

.copyright {
    border-top: 1px solid #555;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content, .contato-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sobre-content img {
        margin: 0 auto 40px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-content > div {
        margin-bottom: 30px;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* ... seu código existente ... */
    
    /* ADICIONE ESTA NOVA REGRA: Ajusta o tamanho da fonte da citação */
    .depoimento-slide blockquote {
        font-size: 1rem; /* Reduz de 1.1rem para 1rem */
        padding: 0 10px; /* Reduz o padding horizontal */

        /* ADICIONE ESTA NOVA REGRA: Zera o padding lateral do carrossel no mobile */
    .carousel-container {
        padding: 0 10px; /* Reduz o padding para garantir que os botões caibam */
    }
    
    /* Reposiciona os botões de navegação para caberem */
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    }
    
    /* ADICIONE ESTA NOVA REGRA: Ajusta o tamanho das aspas grandes */
    .depoimento-slide blockquote::before,
    .depoimento-slide blockquote::after {
        font-size: 3rem; /* Reduz de 4rem para 3rem */
    }

    /* Ajusta a posição das aspas para telas pequenas */
    .depoimento-slide blockquote::before {
        top: -15px;
        left: -10px;
    }
    .depoimento-slide blockquote::after {
        bottom: -30px;
        right: -10px;
    }
    
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }

    .nav-menu.active {
        max-height: 300px; /* Altura suficiente para os links */
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .nav-menu a::after {
        display: none;
    }
    
    .contato-wrapper {
        padding: 30px;
    }
}











/* Estilos para o Carrossel de Depoimentos */
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative; /* Para posicionar os botões de navegação */
    overflow: hidden; /* Esconde os slides que não estão visíveis */
    padding: 0 50px; /* Espaço para os botões laterais */
}

.depoimentos-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Animação suave */
}

.depoimento-slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px 0;
}

.depoimento-slide blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 40px; /* Adiciona espaço para as aspas estilizadas */
}

.depoimento-slide blockquote::before,
.depoimento-slide blockquote::after {
    content: '“';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.2;
}
.depoimento-slide blockquote::before {
    top: -20px;
    left: 0;
}
.depoimento-slide blockquote::after {
    content: '”';
    top: auto;
    bottom: -40px;
    right: 0;
}

.depoimento-slide cite {
    font-weight: 700;
    color: var(--title-color);
    display: block; /* Para garantir que o nome fique na linha de baixo */
}

/* Estilos dos Botões de Navegação */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
    z-index: 10;
}

.prev-btn:hover, .next-btn:hover {
    color: var(--title-color);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Estilos dos Indicadores (Dots) */
.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}







/* Responsividade */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .nav-toggle {
        display: block;
    }

    /* ... [código do menu mobile] ... */
    
    .contato-wrapper {
        padding: 30px;
    }

    /* CORREÇÕES PARA O CARROSSEL */
    .carousel-container {
        padding: 0 10px; 
    }
    
    .depoimento-slide blockquote {
        font-size: 1rem; 
        padding: 0 10px; 
    }
    
    .depoimento-slide blockquote::before,
    .depoimento-slide blockquote::after {
        font-size: 3rem; 
    }

    .depoimento-slide blockquote::before {
        top: -15px;
        left: -10px;
    }
    .depoimento-slide blockquote::after {
        bottom: -30px;
        right: -10px;
    }
    
    /* CORREÇÕES PARA O CARROSSEL */
}






