/* Importação das fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Great+Vibes&display=swap');

/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --primary-font: 'Poppins', sans-serif;
    /* CORREÇÃO AQUI: 'Great Vibes' com espaço, sem o sinal de '+' */
    --logo-font: 'Great Vibes', cursive;
    --primary-color: #333;
    --secondary-color: #6a5a4b; /* Tom de marrom suave */
    --background-light: #f9f8f6;
    --background-dark: #ffffff;
    --text-light: #fff;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- CORREÇÃO PARA A MARGEM LATERAL --- */
html, body {
    overflow-x: hidden; /* Impede a rolagem horizontal causada pelas animações */
}

html {
    scroll-behavior: smooth; 
    font-size: 16px;
}

body {
    font-family: var(--primary-font);
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--background-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- COMPONENTES REUTILIZÁVEIS --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--background-light);
}

/* --- CABEÇALHO E NAVEGAÇÃO --- */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 2rem;
}

.nav-logo {
    font-family: var(--logo-font);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
}

/* --- SEÇÃO INÍCIO (HERO) --- */
.hero-section {
    height: 100vh;
    /* Imagem padrão para DESKTOP */
    background: url('img/7.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--logo-font);
    font-size: 7rem;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: -1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* --- SEÇÃO SOBRE --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text .crefito {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

/* --- SEÇÃO SERVIÇOS E GALERIAS --- */
.service-category {
    margin-bottom: 4rem;
}

.service-category h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* --- SEÇÃO VALORES --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.price-card {
    background-color: #fff; /* Fundo branco para melhor contraste */
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra suave */
}
.price-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.price-card ul li {
    margin-bottom: 1rem;
}
.disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
}

/* --- SEÇÃO PACOTE ESPECIAL --- */
.package-card {
    background: var(--background-dark);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.package-card h3 {
    font-size: 2rem;
    font-weight: 600;
}
.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}
.package-description {
    font-size: 1rem;
}

/* --- SEÇÃO CONTATOS E BOTÕES --- */
#contatos p {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn i {
    font-size: 1.2rem;
}
.btn-whatsapp { background-color: #25D366; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.btn-instagram-alt { background-color: #6a5a4b; }
.btn-email { background-color: #c4c4c4; color: #333; }
.btn-linktree { background-color: #43E660; }
.btn-linkedin { background-color: #0A66C2; }

/* --- RODAPÉ --- */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

/* --- ANIMAÇÕES DE SCROLLREVEAL --- */
.reveal {
    visibility: hidden;
}


/* --- RESPONSIVIDADE (TABLETS E CELULARES) --- */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    /* --- IMAGEM DE FUNDO ADAPTATIVA PARA O HERO --- */
    .hero-section {
        /* Imagem para TABLET E MOBILE */
        background-image: url('img/20.jpg');
    }

    .nav-logo {
        font-size: 2.2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: var(--background-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-container {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- RESPONSIVIDADE (CELULARES PEQUENOS) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    .package-price {
        font-size: 2.5rem;
    }
}