/* 
   ESTILOS GERAIS - PABLO VALE (REVISÃO FINAL PROMPT 5)
   Identidade: Minimalista, Editorial, Premium, Mais Presença
   Cores: Azul Profundo #1e3461, Areia Suave #f3ebd6
*/

:root {
    --primary-color: #1e3461;
    --accent-color: #f3ebd6;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-offwhite: #faf9f6;
    --border-color: #e5e5e5;
    --max-width: 1100px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* 12. RESPONSIVIDADE MOBILE - AJUSTES GERAIS */
section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    .container {
        padding: 0 1.5rem;
    }
}

/* HEADER & NAVEGAÇÃO */
header {
    height: 75px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 36px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        padding: 100px 2.5rem;
        gap: 1.5rem;
        text-align: left;
        transition: right 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    .nav-menu.active { right: 0; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #2a4885;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 52, 97, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

/* HERO SECTION */
.hero {
    padding: 100px 0 80px;
    background-color: var(--bg-offwhite);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 235, 214, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero { padding: 70px 0; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; }
}

/* SEÇÃO DE TEXTO INSTITUCIONAL */
.section-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px;
}

.section-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.section-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* 3 & 7. EFEITOS DE MOVIMENTO DOS BOXES (SITE 3 STYLE) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

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

.card {
    background: #fff;
    padding: 3rem 2.2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 52, 97, 0.08);
    border-color: var(--primary-color);
}

/* 3. SEÇÃO “COMO EU AJUDO” & “ONDE GERA RESULTADO” - EFEITO SITE 3 */
.how-i-help .card, .results-section .card, .workshop-points .card {
    text-align: center;
}

.how-i-help .card h3, .results-section .card h3, .workshop-points .card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

/* 4. SEÇÃO “QUEM É PABLO VALE” - REVISÃO PROMPT 5 */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(30, 52, 97, 0.2);
    transition: var(--transition);
    filter: grayscale(20%);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover::before {
    transform: translate(30px, 30px);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem; /* 4b. Mais espaçamento entre título e texto */
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem; /* 4c. Mais espaçamento no texto */
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .about-image { max-width: 500px; margin: 0 auto; }
}

/* 5 & 9. SESSÃO "UMA FORMA PRÁTICA DE COMEÇAR" (SITE 3 STYLE) */
.cta-section {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.cta-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

/* 7. PÁGINA WORKSHOP - PARA QUEM É / NÃO É */
.workshop-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.fit-card {
    background: #fff;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.fit-card.is-for { border-top: 10px solid #2e7d32; }
.fit-card.is-not { border-top: 10px solid #c62828; }

@media (max-width: 768px) {
    .workshop-fit-grid { grid-template-columns: 1fr; gap: 2rem; }
    .fit-card { padding: 2.5rem; }
}

/* 8. COMO ISSO ENTRA NA PRÁTICA - REVISÃO PROMPT 5 */
.practice-section .card {
    text-align: left;
    padding: 3.5rem 2.5rem;
}

.practice-section .card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.practice-section .card p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.practice-section .card ul li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

/* 10. FOOTER - CORREÇÕES DE ESPAÇAMENTO E ALINHAMENTO */
footer {
    background-color: var(--bg-offwhite);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem; /* 10a. Espaçamento vertical corrigido */
    color: var(--primary-color);
}

.footer-contact-list, .footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* 10a. Espaçamento entre linhas corrigido */
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-item img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: left; }
}

/* LISTAS ESTILIZADAS */
.styled-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.styled-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ANIMAÇÕES */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* 11. FIX PARA MOBILE "EDIFÍCIOS ESTREITOS" */
@media (max-width: 768px) {
    .grid-2, .grid-3 {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .card {
        width: 100%;
    }
}

/* Ajustes pontuais solicitados */
.section-intro h2,
.about-text h2,
.cta-section h2 {
    font-size: clamp(1.65rem, 3vw, 2rem) !important;
}

.fit-card h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.6rem) !important;
    margin-bottom: 1.4rem;
}

.how-i-help .card,
.results-section .card,
.workshop-points .card {
    border: 1.5px solid rgba(30, 52, 97, 0.18) !important;
    overflow: hidden;
}

.how-i-help .card::before,
.results-section .card::before,
.workshop-points .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.how-i-help .card:hover,
.results-section .card:hover,
.workshop-points .card:hover {
    transform: translateY(-12px);
    border-color: rgba(30, 52, 97, 0.35) !important;
    box-shadow: 0 25px 50px rgba(30, 52, 97, 0.10);
}

.how-i-help .card:hover::before,
.results-section .card:hover::before,
.workshop-points .card:hover::before {
    opacity: 1;
}

.results-section .styled-list,
.results-section .styled-list li {
    text-align: left !important;
}

.practice-section .card p {
    margin-bottom: 1.1rem;
    font-weight: 400 !important;
    color: var(--text-light) !important;
    line-height: 1.7;
}

.practice-label {
    font-size: 0.95rem;
    margin: 1rem 0 0.75rem;
    color: var(--text-light) !important;
    font-weight: 500;
}

.practice-section .styled-list li {
    color: var(--text-light) !important;
    font-weight: 400;
    line-height: 1.55;
}

.footer-item a,
.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-item a:hover,
.footer-contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Fallback seguro: evita página em branco se o JS não carregar */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* === AJUSTES FINAIS CONTROLADOS — 2026-04-18 === */
.section-intro h2,
.about-text h2,
.cta-section h2 {
    font-size: clamp(1.65rem, 3vw, 2rem) !important;
}

.fit-card h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.6rem) !important;
    margin-bottom: 1.85rem !important;
}

.how-i-help .card,
.results-section .card,
.workshop-points .card,
.practice-section .card {
    border: 1.5px solid rgba(30, 52, 97, 0.22) !important;
    overflow: hidden;
}

.how-i-help .card::before,
.results-section .card::before,
.workshop-points .card::before,
.practice-section .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.how-i-help .card:hover,
.results-section .card:hover,
.workshop-points .card:hover,
.practice-section .card:hover,
.fit-card:hover {
    transform: translateY(-12px);
    border-color: rgba(30, 52, 97, 0.38) !important;
    box-shadow: 0 25px 50px rgba(30, 52, 97, 0.10);
}

.how-i-help .card:hover::before,
.results-section .card:hover::before,
.workshop-points .card:hover::before,
.practice-section .card:hover::before {
    opacity: 1;
}

.results-section .card {
    text-align: left !important;
}

.results-section .card h3 {
    text-align: center !important;
}

.results-section .styled-list,
.results-section .styled-list li {
    text-align: left !important;
}

.practice-section .card p {
    margin-bottom: 1.1rem;
    font-weight: 400 !important;
    color: var(--text-light) !important;
    line-height: 1.7;
}

.practice-label {
    font-size: 0.95rem;
    margin: 1rem 0 0.75rem;
    color: var(--text-light) !important;
    font-weight: 500 !important;
}

.practice-section .styled-list li {
    color: var(--text-light) !important;
    font-weight: 400;
    line-height: 1.55;
}

.footer-item a,
.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-item a:hover,
.footer-contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Fallback seguro: evita página em branco se o JS não carregar */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .how-i-help .card::before,
    .results-section .card::before,
    .workshop-points .card::before,
    .practice-section .card::before {
        opacity: 1;
    }

    .fit-card {
        box-shadow: 0 16px 34px rgba(30, 52, 97, 0.06);
    }
}

/* === AJUSTES FINAIS — PRÁTICA, MOBILE E CACHE 20260418-3 === */
.results-section .card h3,
.practice-section .card h3,
.workshop-points .card h3 {
    text-align: center;
}

.results-section .styled-list,
.results-section .styled-list li,
.practice-section .styled-list,
.practice-section .styled-list li {
    text-align: left !important;
}

.practice-section .card > p:not(.practice-label) {
    min-height: 122px;
}

.practice-section .card .practice-label {
    display: block;
    margin: 1rem 0 0.8rem;
    color: var(--text-light) !important;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    .how-i-help .card::before,
    .results-section .card::before,
    .workshop-points .card::before,
    .practice-section .card::before {
        opacity: 1 !important;
    }

    .practice-section .card > p:not(.practice-label) {
        min-height: 0;
    }
}
