/* ==========================================================================
   Variáveis e Reset
   ========================================================================== */
   :root {
    /* Cores */
    --color-bg: #FFFFFF;
    --color-bg-light: #F2F9F9; /* Fundo levemente esverdeado/azulado */
    --color-text: #2C3E50; /* Cinza Chumbo Escuro */
    --color-text-light: #666666;
    --color-primary: #008080; /* Azul Esmeralda/Petróleo da Logomarca */
    --color-primary-hover: #006666;
    --color-button-green: #25D366; /* Verde WhatsApp / Botões */
    --color-button-green-hover: #1EBE57;
    --color-accent: #B8996F; /* Dourado/Cobre Mudo para pequenos detalhes se necessário */
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espaçamentos */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Bordas e Sombras */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    
    /* Transições */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Tipografia
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: #1A1A1A;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

/* ==========================================================================
   Layout e Utilitários
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.text-center {
    text-align: center;
}

.mt-4 { margin-top: var(--spacing-lg); }
.mb-2 { margin-bottom: var(--spacing-md); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--spacing-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-sm); }

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    section { padding: var(--spacing-lg) 0; }
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn i { font-size: 1.2rem; }

.btn-primary {
    background-color: var(--color-button-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-button-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-button-green);
    color: var(--color-button-green);
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--color-button-green);
    color: white;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Cabeçalho
   ========================================================================== */
.site-header {
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    padding: 1rem 0;
}

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

.logo-img {
    max-height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.footer-logo-img {
    max-height: 40px;
    width: auto;
    display: inline-block;
    opacity: 0.7;
    margin-bottom: 1rem;
    transition: var(--transition);
    /* Removido mix-blend-mode */
}

.footer-logo-img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 45px;
    }
    .footer-logo-img {
        max-height: 30px;
    }
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Compensa o header absoluto */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Filtro escuro de 75% para muito mais contraste */
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    text-align: left; /* Alinhado à esquerda */
    width: 100%;
}

.hero-content {
    max-width: 800px;
    /* Removido margin auto para ficar à esquerda */
}

.super-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-button-green); /* Verde vibrante para destacar no fundo escuro */
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); /* Tamanho menor */
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); /* Sombra mais forte */
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    max-width: 90%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start; /* Alinhado à esquerda */
}

.micro-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .hero { min-height: 80vh; padding-top: 120px; padding-bottom: var(--spacing-lg); }
    .hero h1 { font-size: 2.5rem; }
}

/* ==========================================================================
   2. Diferenciais
   ========================================================================== */
.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.diferencial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 2rem;
}

/* ==========================================================================
   3. Serviços
   ========================================================================== */
.servicos-grid {
    gap: 1.5rem;
}

.servico-card {
    height: 350px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-10px);
}

.servico-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

.servico-info {
    position: relative;
    z-index: 2;
    color: white;
}

.servico-info h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.servico-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   4. Prova Social
   ========================================================================== */
.depoimento-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.aspas {
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-bg-light);
    line-height: 1;
    z-index: 1;
}

.depoimento-texto {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0;
}

.depoimento-autor span {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ==========================================================================
   5. Contato
   ========================================================================== */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: var(--color-text); /* Fundo escuro */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.contato-info {
    padding: 4rem;
    color: white;
}

.contato-info h2 {
    color: white;
}

.contato-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

.contato-lista {
    list-style: none;
}

.contato-lista li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.contato-form {
    padding: 4rem;
    background-color: white;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.9rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #FAFAFA;
}

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

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .contato-wrapper { grid-template-columns: 1fr; gap: 0; }
    .contato-info, .contato-form { padding: 3rem 2rem; }
}

/* ==========================================================================
   Nova Seção: Sobre a Jucélia
   ========================================================================== */
.sobre-jucelia {
    background-color: var(--color-bg);
}

.sobre-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.sobre-imagem {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-content h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.sobre-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .sobre-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   Nova Seção: O Custo de Não Contratar
   ========================================================================== */
.custo-nao-contratar {
    background-color: var(--color-bg-light);
}

.custo-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.custo-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-top: 4px solid var(--color-primary);
}

.custo-card.highlight {
    border-top: 4px solid #E74C3C; /* Vermelho para destacar o prejuízo */
    background: #FFF9F9;
}

.custo-card .percent {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.custo-card.highlight .percent {
    color: #E74C3C;
}

.custo-card h3 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .custo-card-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 3rem 0;
    background-color: var(--color-bg);
    border-top: 1px solid #EEE;
}

.site-footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   WhatsApp Flutuante
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
