/* Paleta de Cores:
    - Preto Escuro: #1a1a1a
    - Dourado para Seções: #c9a05b
    - Cinza Claro: #f0f0f0
    - Preto para Títulos e Textos: #1a1a1a
*/

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* O fundo geral agora é dourado */
    color: #f0f0f0;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300; /* Deixa a fonte mais fina */
}
.section-title-italic {
    font-size: 3em;
    font-style: italic; /* Adiciona o itálico */
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

/* Estilo do Cabeçalho e Introdução */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('../images/testando.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay preto semi-transparente */
    z-index: 1;
}
.nav-links {
    list-style: none;
    display: flex; /* Agora a regra está na classe correta */
    margin: 0;
    padding: 0;
    align-items: center;
}
/* Navegação */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 2; /* Para ficar acima do overlay */
}

.navbar .logo a {
    font-family: 'Playfair Display', serif;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar li {
    margin-left: 30px;
}

.navbar a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #c9a05b;
}

.navbar .nav-button {
    background-color: #c9a05b;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.navbar .nav-button:hover {
    background-color: #f0f0f0;
    color: #c9a05b;
}

/* Conteúdo principal do cabeçalho */
.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 100px;
    padding-top: 200px; /* Ajuste a altura para o posicionamento do texto */
    text-align: left;
}

.hero-content h1 {
    color: #f0f0f0;
    font-size: 4em;
    margin-bottom: 10px;
    text-align: left;
}

.hero-content p {
    font-size: 1.2em;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-detalhes, .btn-agendar {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-detalhes {
    background-color: transparent;
    border: 2px solid #f0f0f0;
    color: #f0f0f0;
}

.btn-detalhes:hover {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

.btn-agendar {
    background-color: #c9a05b;
    color: #1a1a1a;
}

.btn-agendar:hover {
    background-color: #f0f0f0;
    color: #c9a05b;
}


/* ... (O restante do seu CSS que não foi alterado deve vir aqui) ... */
.about-section {
    background-color: #c9a05b;
    color: #1a1a1a;
}

.about-section h2 {
    color: #1a1a1a;
    font-size: 2.5em;
}

.about-section .about-text {
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px;
}
/* Seção "Sobre Mim" Detalhada */
.about-me-detail {
    background-color: #c0a174; /* A nova cor de fundo */
    color: #1a1a1a;
    padding: 60px 20px;
    text-align: left;
}

.about-me-container {
    max-width: 800px;
    margin: auto;
}

.about-me-detail h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-me-detail .italic-title {
    font-size: 3em;
    font-family: 'Playfair Display', serif; /* Mantém a fonte do título */
    font-style: italic; /* A propriedade mágica para itálico */
    color: #1a1a1a;
}

.about-me-detail p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.about-me-detail .bold-text {
    font-weight: bold; /* Para o texto em negrito */
}

/* Scroll para o topo */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: #f0f0f0;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: none; /* Inicia escondido, JavaScript o mostrará */
}

.scroll-to-top:hover {
    background-color: #333;
}
/* Seção de Serviços */
.services-section {
    background-color: #1a1a1a; /* Fundo preto */
    color: #f0f0f0;
}

.services-section h2 {
    color: #f0f0f0; /* Título em cinza claro */
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #c9a05b; /* Fundo do card em dourado */
    color: #1a1a1a; /* Cor do texto no card */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px); /* Efeito de elevação ao passar o mouse */
}

.service-card h3 {
    color: #1a1a1a; /* Título do serviço em preto */
    font-size: 1.5em;
    margin-top: 0;
}

.service-card p {
    font-size: 1em;
    min-height: 80px;
}

.price-tag {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    color: #1a1a1a;
    margin: 15px 0;
}

.service-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a1a1a;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #333;
}
/* Seção de Serviços (Fundo Dourado) */
.services-section {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 60px 20px;
}

.services-section h2 {
    color: #1a1a1a;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.service-item {
    width: 250px;
    text-align: center;
}

.service-item img {
    width: 60px;
    margin-bottom: 20px;
}
.gallery-categories a {
    text-decoration: none;
    color: #333; /* Para garantir que o texto seja escuro */
}

.service-item h3 {
    font-size: 1.5em;
    margin-top: 0;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1em;
    min-height: 80px;
}

/* Seção da Galeria */
.gallery-section {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
}

.gallery-section h2 {
    color: #f0f0f0;
}

.gallery-subtitle {
    font-size: 1.2em;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 40px;
}

.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.category-card {
    width: 300px;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent; /* Borda invisível */
    transition: border 0.3s ease;
}

.category-card:hover {
    border: 1px solid #c9a05b; /* Borda dourada ao passar o mouse */
}

.category-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.category-card h3 {
    color: #f0f0f0;
}

/* Estilo da Janela Modal */
.modal {
    display: none; /* Escondida por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 900px;
    padding: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
}

.close-button {
    color: #f0f0f0;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}
/* Seção de Contato Combinada */
.contact-section {
    background-color: #f0f0f0; /* Fundo claro para combinar com a imagem */
    color: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
}
/* Ajuste o título principal da seção */
.contact-section h2.section-title-italic {
    color: #1a1a1a;
}
.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}

/* Coluna de Dados de Contato */
.contact-details {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.5em;
    margin: 0 0 5px 0;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.contact-item p {
    margin: 0;
    font-size: 1.1em;
}

.contact-link {
    color: #c9a05b;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a1a1a;
}

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

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Coluna do Formulário */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container .form-intro {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-container input, .contact-form-container textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-container button {
    background-color: #c9a05b;
    color: #1a1a1a;
    border: none;
    padding: 15px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form-container button:hover {
    background-color: #D4AF37;
}
/* Botão de Voltar ao Topo */
#scrollToTopBtn {
    display: none; /* Escondido por padrão */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 1.2em;
    border: none;
    outline: none;
    background-color: #c9a05b; /* Cor dourada */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
    background-color: #D4AF37;
    transform: scale(1.1);
}

#scrollToTopBtn img {
    width: 20px; /* Tamanho do ícone */
    height: 20px;
    filter: invert(100%); /* Deixa o ícone branco */
}
/* Estilo do Rodapé */
.footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
}

.footer-text {
    margin-bottom: 20px;
}

/* Container dos Botões Sociais */
.social-links {
    display: flex;
    justify-content: center;
    list-style: none; /* Remove os pontos da lista */
    padding: 0;
    margin: 0;
}

.social-links li {
    margin: 0 10px;
}

/* Estilo do Botão */
.social-links li a {
    width: 60px;
    height: 60px;
    background-color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
}

/* Estilo do Ícone */
.social-links li a .icon {
    position: relative;
    color: #1a1a1a;
    transition: .5s;
    z-index: 3;
}

.social-links li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}

/* Efeito de Hover - Cor de Preenchimento */
.social-links li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00; /* Cor padrão, será sobrescrita */
    transition: .5s;
    z-index: 2;
}

.social-links li a:hover:before {
    top: 0;
}

/* Cores específicas para cada botão */
.social-links li:nth-child(1) a:before {
    background: #E4405F; /* Cor do Instagram */
}

.social-links li:nth-child(2) a:before {
    background: #25D366; /* Cor do WhatsApp */
}

.social-links li:nth-child(3) a:before {
    background: #c9a05b; /* Cor dourada do e-mail */
}
/* ======================== */
/* Botão Hamburguer */
/* ======================== */
.menu-toggle {
    display: none; /* escondido no desktop */
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #f0f0f0;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Estilos para o serviço */
.services-section .service-item {
    text-align: center;
    transition: transform 0.3s ease-in-out; /* Transição para o movimento */
}
/* Remove a linha de baixo e garante a cor correta do link */
.services-section .service-link {
    text-decoration: none;
    color: inherit;
}
/* Efeito de hover */
.services-section .service-link:hover .service-item {
    transform: translateY(-5px); /* Move o item sutilmente para cima */
}

/* Efeito de realce para o texto e ícone no hover */
.services-section .service-link:hover h3,
.services-section .service-link:hover p,
.services-section .service-link:hover img {
    color: #c9a05b; /* Muda a cor do texto para dourado */
    filter: brightness(1.2) drop-shadow(0 0 5px #c9a05b); /* Adiciona um brilho sutil ao ícone e texto */
    transform: scale(1.05); /* Aumenta o tamanho levemente */
}

/* Garante a transição suave dos elementos */
.services-section .service-link img,
.services-section .service-link h3,
.services-section .service-link p {
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
/* Efeito de destaque ao passar o mouse */
.gallery-categories .category-card:hover {
    box-shadow: 0 0 15px rgba(201, 160, 91, 0.8); /* Sombra dourada suave */
    transform: scale(1.05); /* Aumenta o tamanho do card levemente */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* Adicione este código à sua seção <style> */
.learn-more-button {
    display: inline-block;
    padding: 8px 15px;
    margin-top: 15px;
    background-color: #c9a781;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #b38e6e;
}
/* Estilo da linha divisória entre as seções */
.section-divider {
    display: none; /* Inicia escondida por padrão */
    border: none;
    border-top: 1px solid #dcdcdc;
    width: 80%;
    margin: 40px auto;
}



/* ======================== */
/* Menu Mobile (até 768px) */
/* ======================== */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        position: relative;
        z-index: 100;
        padding: 10px 20px
        
    }

    /* Botão hamburguer visível apenas no mobile */
    .menu-toggle {
        display: flex;
    }

    /* Menu Mobile - overlay fullscreen */
    .nav-links {
        position: fixed;
        display: flex;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        display: none; /* escondido por padrão */
        z-index: 1000;
    }
    

    .nav-links.active {
        display: flex; /* mostra quando o menu é ativado */
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.5em;
        color: #f0f0f0;
    }

    /* Esconde o botão "Agendar" dentro do menu no mobile */
    .nav-links li:last-child {
        display: none;
    }

    /* ======================== */
    /* Hero responsivo */
    /* ======================== */
    body.menu-active {
        overflow: hidden; /* Impede o scroll do conteúdo do fundo */
    }

    body.menu-active .hero-section > *:not(.navbar),
    body.menu-active .about-me-section,
    body.menu-active .services-section,
    body.menu-active .gallery-section,
    body.menu-active .contact-section,
    body.menu-active .footer {
        filter: blur(5px);
        transition: filter 0.5s ease-in-out;
        pointer-events: none; /* Desativa cliques nos elementos desfocados */
    }
    .section-divider {
        display: block; /* Exibe a linha apenas quando a tela for de no máximo 768px */
    }

    /* Seção Hero */
    .hero-section {
        height: auto; /* Altura se ajusta ao conteúdo */
        padding: 80px 20px 40px;
        padding-top: 40px;
        /* padding-left: 20px; */
        /* padding-right: 20px; */
    }
    
    .hero-content {
        padding-left: 0;
        text-align: center;
        padding-bottom: 30px; /* Adiciona mais espaço abaixo do texto */
    }

    .hero-content h1 {
        font-size: 2.2em;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .hero-content p {
        font-size: 1.1em;
        text-align: left;
    }

    .hero-buttons {
        display: flex; /* Agora os botões ficam lado a lado */
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center;
        gap: 15px; /* Adiciona espaço entre os botões */
    }

    .hero-buttons .btn-detalhes, .hero-buttons .btn-agendar {
        font-size: 0.9em;
        padding: 10px 15px;
    }
    .gallery-photos {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-photos img {
        max-width: 100%;
    }
}

/* ======================== */
/* Animação Hamburguer → X */
/* ======================== */
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.developer-logo {
    width: 150px;  /* menor para não dominar o rodapé */
    height: auto;
    margin-top: 10px;
}


/* Ajuste da ordem no footer */
.developer-info {
    margin-top: 15px;
    color: #c9a05b;
}
.footer-text {
    margin: 10px 0;
}
.social-links {
    margin-bottom: 15px;
}

