/* --- VARIÁVEIS DE COR (Baseado na sua logo) --- */
:root {
    --cor-azul: #0D47A1; /* Ajustado para um azul forte e legível */
    --cor-amarelo: #FFD600; /* Amarelo vibrante */
    --cor-cinza: #B0BEC5; /* Cinza médio/claro */
    --cor-texto: #333;
    --cor-fundo: #FFFFFF;
    --cor-fundo-escuro: #263238; /* Para sobreposição */
    --cor-whatsapp: #25D366;
}

/* --- RESET BÁSICO E FONTES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Essencial para o script de rolagem */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- CABEÇALHO E NAVEGAÇÃO --- */
header {
    background: var(--cor-fundo);
    border-bottom: 2px solid var(--cor-cinza);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

/* O link <a> que guarda a logo e o texto */
header .logo {
    text-decoration: none;
    color: var(--cor-azul);
    display: flex;         /* A mágica acontece aqui */
    align-items: center;   /* Alinha verticalmente */
    gap: 0.5rem;             /* Cria um espaço entre a logo e o texto (ex: 8px) */
}

/* A imagem <img> dentro do link */
header .logo img {
    height: 90px; /* Ajuste esta altura como preferir */
    width: auto;  /* Mantém a proporção */
}

/* O texto <span> dentro do link */
header .logo span {
    font-weight: bold;
    font-size: 1.2rem;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav li {
    margin-left: 1.5rem;
}

header nav a {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--cor-azul);
}

/* --- BOTÃO (CALL TO ACTION) --- */
.cta-button {
    display: inline-block;
    background: var(--cor-azul);
    color: var(--cor-fundo);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--cor-amarelo);
    color: var(--cor-texto);
    transform: translateY(-2px);
}

/* --- EFEITO PARALLAX E SEÇÕES --- */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: var(--cor-fundo);
    text-align: center;
    z-index: 1;
}

.parallax-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* --- SEÇÃO 1: INÍCIO (HERO) --- */
#inicio {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

#inicio .hero-content {
    max-width: 800px;
}

#inicio h1 {
    font-size: 2.5rem;
    color: var(--cor-amarelo);
    margin-bottom: 0.5rem;
}

#inicio h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

#inicio p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- SEÇÃO 2: SOBRE --- */
#sobre {
    padding: 5rem 0;
    background: var(--cor-fundo);
}

#sobre h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--cor-azul);
    margin-bottom: 3rem;
}

.sobre-container {
    display: flex;
    gap: 2rem;
}

.sobre-bloco {
    flex: 1;
}

.sobre-bloco h3 {
    color: var(--cor-azul);
    margin-bottom: 1rem;
}

.sobre-bloco ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.sobre-bloco li {
    margin-bottom: 0.5rem;
}
/* --- ESTILOS DA SEÇÃO 3: PRODUTOS (TABELA DE PREÇOS) --- */
#produtos {
    padding: 5rem 0;
    background-color: #f9f9f9; /* Fundo cinza claro */
}

#produtos h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--cor-azul);
    margin-bottom: 1rem;
}

#produtos .subtitulo-secao {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--cor-texto);
}

.pacotes-container {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Faz as colunas terem a mesma altura */
    gap: 2rem;
    flex-wrap: wrap; /* Para responsividade */
}

.pacote {
    background: var(--cor-fundo);
    border: 1px solid var(--cor-cinza);
    border-radius: 8px;
    padding: 2rem;
    flex: 1; /* Faz as colunas crescerem igualmente */
    min-width: 300px; /* Largura mínima no mobile */
    max-width: 350px;
    display: flex;
    flex-direction: column; /* Para alinhar o botão no fundo */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pacote:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* O pacote mais popular (Upsell) */
.pacote.popular {
    border: 2px solid var(--cor-azul);
}

.selo-popular {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--cor-azul);
    color: var(--cor-fundo);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-bottom-left-radius: 8px;
}

.pacote h3 {
    color: var(--cor-azul);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pacote .preco {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--cor-texto);
}

.pacote .preco-detalhe {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--cor-cinza);
    padding-bottom: 1.5rem;
}

.pacote p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pacote ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1; /* Empurra o botão para o fundo */
}

.pacote ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

/* Botão Secundário (para os pacotes não-populares) */
.cta-button-secundario {
    display: inline-block;
    background: transparent;
    color: var(--cor-azul);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid var(--cor-azul);
    text-align: center;
}

.cta-button-secundario:hover {
    background: var(--cor-azul);
    color: var(--cor-fundo);
}

/* --- ESTILOS DA SEÇÃO 4: SERVIÇO PERSONALIZADO (BANNER) --- */
#servico-personalizado {
    padding: 3.5rem 0; /* Um pouco mais fino que a seção de produtos */
    background: var(--cor-fundo-escuro); /* Fundo escuro */
    color: var(--cor-fundo);
}

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

#servico-personalizado .banner-texto h3 {
    color: var(--cor-amarelo); /* Destaque no título */
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

#servico-personalizado .banner-texto p {
    font-size: 1.1rem;
    max-width: 600px;
}

#servico-personalizado .banner-cta .cta-button {
    background: var(--cor-fundo);
    color: var(--cor-azul);
    flex-shrink: 0; /* Impede que o botão encolha */
    margin-left: 2rem;
}

#servico-personalizado .banner-cta .cta-button:hover {
    background: var(--cor-amarelo);
    color: var(--cor-texto);
}

/* Responsividade do banner */
@media (max-width: 900px) {
    #servico-personalizado .banner-container {
        flex-direction: column;
        text-align: center;
    }
    #servico-personalizado .banner-cta .cta-button {
        margin-left: 0;
        margin-top: 2rem;
    }
}


/* --- SEÇÃO 5: CONTATO --- */
#contato {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
}

#contato h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#contato p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* --- FORMULÁRIO --- */
form {
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--cor-cinza);
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f4f4f4;
}

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

form button {
    width: 100%;
    font-size: 1.1rem;
}

/* --- ESTILO DO BOTÃO FLUTUANTE DE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--cor-whatsapp); /* Usa a cor verde definida no :root */
    border-radius: 50%; /* Círculo perfeito */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden; /* Garante que a imagem não saia do círculo */
}

/* Estilo para a imagem DENTRO do botão */
.whatsapp-float img {
    width: 36px;  /* Ajuste o tamanho do ícone interno como preferir */
    height: 36px;
    /* Remove a cor de fundo verde caso a imagem tenha transparência */
    /* A imagem que você mandou já tem o fundo verde, então está perfeito */
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- RODAPÉ --- */
footer {
    text-align: center;
    padding: 2rem 0;
    background: var(--cor-fundo-escuro);
    color: var(--cor-cinza);
    font-size: 0.9rem;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav {
        margin-top: 1rem;
    }
    
    .sobre-container {
        flex-direction: column; /* Empilha as colunas */
    }

    #inicio h1 { font-size: 2rem; }
    #inicio h2 { font-size: 1.5rem; }

    /* Ajusta o botão do WhatsApp para não cobrir conteúdo */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    
}

/* --- ESTILOS NOVOS PARA A SEÇÃO SOBRE --- */
.destaque-sobre {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--cor-azul);
    font-style: italic;
    border-left: 4px solid var(--cor-amarelo);
    padding-left: 15px;
    margin-bottom: 2rem;
}

.valores-container {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.valor-box {
    background: #f4f4f4; /* Cinza bem clarinho */
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    border-top: 3px solid var(--cor-azul);
}

.valor-box h4 {
    color: var(--cor-azul);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.valor-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

