/* ===== Reset & Box-Sizing ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #F4F4F5;
    color: #18181B;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    transition: padding 0.3s ease;
}

header nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}
header nav a {
    color: #18181B;
    font-weight: 500;
}

/* Primeira sessão */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    gap: 40px;
    flex-wrap: wrap;
    min-height: 100vh;
    box-sizing: border-box;
}
.image-side {
    flex: 1;
    min-width: 300px;
}
.image-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}
.text-side {
    flex: 1;
    min-width: 300px;
}
.text-side h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-side h1 span {
    color: #3B82F6;
}
.text-side p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}
.botao-fale-comigo {
    background-color: #3B82F6;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 48px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.3);
    transition: background 0.3s ease;
}
.botao-fale-comigo:hover {
    background-color: #2563EB;
}

/* Hero */
.sessao-hero {
    background-image: url('assets/Homem-preocupado-olhando-papeis-mesa-suja.webp');
    fetchpriority: high;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
    min-height: 100vh;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.3));
    z-index: 1;
}
.container-hero {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sessao-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
}

.sublinhado {
    text-decoration: underline;
}

.destaque-azul {
    color: #3b82f6;
    font-weight: bold;
}

.destaque-vermelho {
    color: red;
    font-weight: bold;
    text-decoration: line-through;
}

.subtexto {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f4f4f5;
}

.subtexto .azul {
    color: #3b82f6;
    font-weight: 600;
}

.botao-fale {
    display: inline-block;
    padding: 14px 48px;
    background-color: #3b82f6;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.3);
    transition: background 0.3s ease;
}

.botao-fale:hover {
    background-color: #2563eb;
}

@media (max-width: 768px) {
    .sessao-hero h1 {
        font-size: 1.8rem;
    }

    .subtexto {
        font-size: 1rem;
    }

    .botao-fale {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

/* Segunda sessão */
.image-container {
    flex: 1 1 400px;
    padding: 10px 20px 0 20px;
    text-align: center;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.text-container {
    flex: 1 1 400px;
    padding: 10px 20px;
}
.text-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.text-container h2 span {
    color: #3B82F6;
}
.text-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 15px 0;
    color: #333;
}
.btn-container {
    text-align: center;
    margin-top: 30px;
}
.btn {
    display: inline-block;
    background-color: #3B82F6;
    color: white;
    padding: 14px 48px;
    border: none;
    border-radius: 99px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}
.btn:hover {
    background-color: #2563EB;
}

/* Terceira sessão */
.sessao-beneficio-oraculo {
    padding: 60px 20px;
}
.container-beneficio {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.texto-beneficio {
    flex: 1 1 500px;
    padding: 20px;
    min-width: 300px;
}
.texto-beneficio h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #18181B;
    margin-bottom: 16px;
}
.texto-beneficio p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}
.texto-beneficio ul {
    padding-left: 1rem;
    margin-bottom: 24px;
}
.texto-beneficio ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}
.botao-centro {
    text-align: center;
}
.botao-beneficio {
    display: inline-block;
    background-color: #3B82F6;
    color: white;
    padding: 14px 48px;
    border-radius: 999px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}
.botao-beneficio:hover {
    background-color: #2563EB;
}
.imagem-beneficio {
    flex: 1 1 500px;
    padding: 20px;
    text-align: center;
    min-width: 300px;
}
.imagem-beneficio img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Última sessão */
.sessao-simples-oraculo {
    padding: 60px 20px;
}
.conteudo {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.sessao-simples-oraculo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #18181B;
    margin-bottom: 30px;
}
.passos {
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}
.passos p {
    font-size: 1rem;
    color: #1e40af;
    margin-bottom: 20px;
    line-height: 1.6;
}
.emoji {
    margin-right: 8px;
    font-size: 1.2rem;
}
.botao-container {
    margin-top: 40px;
}
.botao {
    display: inline-block;
    background-color: #3B82F6;
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s;
}
.botao:hover {
    background-color: #2563eb;
}
.rodape {
    background-color: #f4f4f5;
    padding: 60px 20px 20px;
    font-family: 'Inter', sans-serif;
    color: #0a0a0a;
    text-align: center;
}

.rodape-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.rodape-coluna {
    flex: 1 1 300px;
    margin: 10px;
    font-size: 1rem;
}

.rodape-coluna h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.rodape-coluna a {
    color: inherit;
    text-decoration: none;
}

.rodape-logo {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.rodape-logo img {
    max-height: 80px;
    margin-bottom: 15px;
}

.icones-sociais a img {
    width: 40px;
    margin: 0 8px;
    transition: transform 0.2s ease;
}

.icones-sociais a img:hover {
    transform: scale(1.1);
}

.rodape-copy {
    border-top: 1px solid #d4d4d8;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #18181b;
}

/* Responsivo geral */
@media (max-width: 768px) {
    .section, .container-beneficio {
        flex-direction: column;
        padding: 40px 20px;
    }
    .text-side h1, .text-container h2, .sessao-beneficio-oraculo h2, .sessao-simples-oraculo h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    .text-side p, .text-container p, .texto-beneficio p, .texto-beneficio ul, .passos {
        text-align: center;
    }
    .botao, .btn, .botao-fale-comigo, .botao-fale, .botao-beneficio {
        width: auto;
    }
}
img.nld-close-white {
    overflow: clip !important;
}

.sessao-hero {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    color: white;
    text-align: center;
    position: relative;
    min-height: 70vh;
}

.sessao-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.sessao-hero .container-hero {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sessao-hero h1 {
        font-size: 2rem;
    }

    .sessao-hero .subtexto {
        font-size: 1rem;
        padding: 0 10px;
    }
}
.bloco-texto-sobre-imagem {
    background: rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 16px;
    display: inline-block;
    backdrop-filter: blur(6px);
}
.sessao-simples-oraculo .conteudo {
    max-width: 1100px;
    font-size: 1.1rem;
    padding: 0 32px;
    line-height: 1.8;
}
.sessao-simples-oraculo h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.passos p {
    font-size: 1.2rem;
}
