/* =====================================================================
   Instituto Walden4 — TEMA ÚNICO DO SITE
   Warm & Cozy · Navy + Terracotta · Inter
   ---------------------------------------------------------------------
   Este é o ÚNICO arquivo de estilo do site. Para mudar a aparência de
   TODAS as páginas, edite as variáveis em :root (cores, fontes, raios,
   sombras) — tudo abaixo deriva delas.

   Base: a página /psicoterapia/. Estende-se com todos os componentes
   usados nas demais páginas (heróis, cards de serviço com imagem, listas
   de materiais, grades de vídeo, player de rádio, seção de app, etc.),
   todos re-coloridos com a mesma identidade.
   ===================================================================== */

:root {
    /* ---- Navy ---- */
    --navy-950:  #0D1B2E;
    --navy-900:  #152338;
    --navy-800:  #1B2D47;
    --navy-700:  #223856;
    --navy-600:  #2A4568;
    --navy-500:  #345078;
    --navy-400:  #4A6A96;
    --navy-300:  #6A8CB8;
    --navy-200:  #A7C0DD;
    --navy-100:  #D6E3F1;
    --navy-50:   #EEF4FA;

    /* ---- Terracotta / clay (accent) ---- */
    --clay-600:  #B0573B;
    --clay-500:  #C56B4B;
    --clay-400:  #D88E6E;
    --clay-300:  #E7B49B;
    --clay-200:  #F0CDB8;
    --clay-100:  #F7E3D6;
    --clay-50:   #FBF1E9;

    /* ---- Companions (variedade nos ícones) ---- */
    --sage-600:  #6B8870;
    --sage-500:  #7E9B81;
    --sage-100:  #E5ECE2;
    --honey-600: #C28F3E;
    --honey-500: #D4A357;
    --dusty-500: #6E8BAE;
    --dusty-600: #5A7596;
    --mauve-500: #9C7B94;
    --mauve-600: #846480;

    /* ---- Neutros ---- */
    --white:      #FFFFFF;
    --warm-white: #FFFDFB;
    --cream:      #FBF7F1;
    --off-white:  #F5EEE3;
    --grey-50:    #F3EDE3;
    --grey-100:   #ECE4D7;
    --grey-200:   #DCD2C2;
    --grey-300:   #B7C2D2;
    --grey-400:   #8C97AB;
    --grey-500:   #6B7486;
    --grey-600:   #525A6B;
    --grey-700:   #3C4151;
    --grey-800:   #2A2E3A;
    --grey-900:   #1A1B22;
    --ink:        #1A2238;

    /* ---- Aliases legados (compat. com marcações antigas) ---- */
    --teal-700: var(--clay-600); --teal-600: var(--clay-600); --teal-500: var(--clay-500);
    --teal-400: var(--clay-500); --teal-300: var(--clay-400); --teal-100: var(--clay-100); --teal-50: var(--clay-50);
    --gold-600: var(--honey-600); --gold-500: var(--honey-500); --gold-400: var(--honey-500);
    --gold-300: var(--clay-300); --gold-100: var(--clay-100); --gold-50: var(--clay-50);
    --color-on-dark: rgba(247, 238, 230, 0.88);
    --color-on-dark-muted: rgba(247, 238, 230, 0.60);

    /* ---- Tokens semânticos ---- */
    --color-bg:            var(--cream);
    --color-surface:       var(--white);
    --color-surface-alt:   var(--off-white);
    --color-primary:       var(--navy-800);
    --color-accent:        var(--clay-500);
    --color-heading:       var(--ink);
    --color-text:          var(--grey-700);
    --color-text-muted:    var(--grey-600);
    --color-border:        var(--grey-100);
    --color-border-strong: var(--grey-200);

    /* ---- Tipografia ---- */
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: var(--font-sans);
    --font-body:    var(--font-sans);

    /* ---- Sombras ---- */
    --shadow-xs:  0 1px 2px rgba(58, 41, 28, 0.05);
    --shadow-sm:  0 2px 8px rgba(58, 41, 28, 0.07);
    --shadow-md:  0 8px 24px rgba(58, 41, 28, 0.09);
    --shadow-lg:  0 16px 40px rgba(58, 41, 28, 0.12);
    --shadow-xl:  0 24px 56px rgba(58, 41, 28, 0.14);

    /* ---- Raios ---- */
    --r-sm:   8px;
    --r-md:   14px;
    --r-lg:   20px;
    --r-xl:   28px;
    --r-full: 9999px;

    /* ---- Movimento ---- */
    --ease-out:    cubic-bezier(0.33, 1, 0.68, 1);
    --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
    --dur-fast:    200ms;
    --dur-mid:     350ms;
    --dur-slow:    550ms;

    /* ---- Larguras ---- */
    --max-content: 920px;
    --max-wide:    1240px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

/* ===== Navigation ===== */
.nav-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(251, 247, 241, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--dur-mid) var(--ease-out);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .nav-bar { background: rgba(251, 247, 241, 0.97); }
}

.nav-container {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy-900);
    line-height: 1.1;
}

.nav-logo-tagline {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clay-600);
    line-height: 1;
}

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: none; border: none;
    color: var(--navy-800);
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: background-color var(--dur-fast) var(--ease-out);
    align-items: center; justify-content: center;
}

.nav-toggle:hover { background-color: var(--clay-50); }

.nav-menu { display: flex; list-style: none; align-items: center; gap: 4px; }

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-600);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: all var(--dur-fast) var(--ease-out);
}

.nav-link:hover { background-color: var(--clay-50); color: var(--clay-600); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--navy-800);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--r-full);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all var(--dur-mid) var(--ease-spring);
    margin-left: 8px;
}

.nav-cta .material-icons { font-size: 17px; }
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-700); box-shadow: 0 6px 18px rgba(27, 45, 71, 0.28); }

/* ===== Hero (claro) =====
   Base: herói claro e centrado. Variante .hero--split = texto + imagem. */
.hero {
    position: relative;
    background: linear-gradient(170deg, var(--clay-50) 0%, var(--cream) 55%);
    padding: 132px 0 84px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 8%, rgba(197, 107, 75, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 6% 92%, rgba(126, 155, 129, 0.10) 0%, transparent 40%),
        radial-gradient(rgba(176, 87, 59, 0.06) 1px, transparent 1px);
    background-size: auto, auto, 24px 24px;
    -webkit-mask-image: linear-gradient(160deg, #000 0%, transparent 72%);
    mask-image: linear-gradient(160deg, #000 0%, transparent 72%);
    pointer-events: none;
}

/* Camadas de fundo opcionais (compat. heróis antigos). A foto de capa
   escura é ocultada — o tema é claro e unificado. */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-image { display: none; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--clay-50) 0%, transparent 60%); }
.hero-bg-pattern { position: absolute; inset: 0; }
.hero-divider { display: none; }

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

/* Variante texto + imagem (página psicoterapia) */
.hero--split .hero-container {
    max-width: var(--max-wide);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    text-align: left;
}

.hero-content { text-align: inherit; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    border: 1px solid var(--clay-200);
    border-radius: var(--r-full);
    background: var(--clay-50);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clay-600);
    margin-bottom: 28px;
}

.hero-eyebrow .material-icons { font-size: 16px; color: var(--clay-500); }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.2vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
}

.hero-title em { font-style: normal; color: var(--clay-500); }

.hero-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 500;
    color: var(--grey-600);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--grey-500);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-container:not(.hero--split *) .hero-description,
.hero:not(.hero--split) .hero-description { margin-left: auto; margin-right: auto; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero:not(.hero--split) .hero-actions { justify-content: center; }

.hero-media { position: relative; }

.hero-media::before {
    content: '';
    position: absolute;
    right: -22px; bottom: -22px;
    width: 64%; height: 72%;
    background: var(--clay-400);
    border-radius: var(--r-xl);
    z-index: 0;
    opacity: 0.28;
}

.hero-media::after {
    content: '';
    position: absolute;
    left: -16px; top: -16px;
    width: 92px; height: 92px;
    border-radius: var(--r-lg);
    background: radial-gradient(var(--navy-300) 1.5px, transparent 1.5px) 0 0 / 14px 14px;
    opacity: 0.55;
    z-index: 0;
}

.hero-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--warm-white);
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--navy-800);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--dur-mid) var(--ease-spring);
}

.btn-primary .material-icons { font-size: 19px; }
.btn-primary:hover { transform: translateY(-3px); background: var(--navy-700); box-shadow: 0 10px 28px rgba(27, 45, 71, 0.30); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--clay-600);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--clay-300);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--dur-mid) var(--ease-out);
}

.btn-ghost .material-icons { font-size: 19px; }
.btn-ghost:hover { border-color: var(--clay-500); background: var(--clay-50); transform: translateY(-2px); }

/* ===== Section shared ===== */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clay-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-800);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.section-description {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text-muted);
    max-width: 640px;
}

.section-header-center { text-align: center; max-width: var(--max-content); margin: 0 auto 60px; }
.section-header-center .section-description { margin: 0 auto; }
.section-container { max-width: var(--max-wide); margin: 0 auto; }

/* ===== Trust Strip ===== */
.trust-strip {
    background: var(--warm-white);
    padding: 56px 32px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    max-width: var(--max-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.trust-item { padding: 12px 32px; text-align: center; transition: transform var(--dur-fast) var(--ease-out); }
.trust-item + .trust-item { border-left: 1px solid var(--color-border); }
.trust-item:hover { transform: translateY(-3px); }

.trust-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: var(--clay-500);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.trust-item:nth-child(2) .trust-number { color: var(--sage-500); }
.trust-item:nth-child(3) .trust-number { color: var(--navy-600); }
.trust-item:nth-child(4) .trust-number { color: var(--honey-600); }

.trust-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grey-600);
}

/* ===== Services ===== */
.services-section { padding: 100px 32px; background-color: var(--off-white); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    background-color: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all var(--dur-mid) var(--ease-out);
    box-shadow: var(--shadow-xs);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--clay-400);
    opacity: 0;
    transition: opacity var(--dur-mid) var(--ease-out);
    z-index: 1;
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--clay-200); }
.service-card:hover::before { opacity: 1; }

.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}
.service-card:hover .service-card-image { transform: scale(1.04); }

.service-card-content { padding: 36px 32px; flex-grow: 1; display: flex; flex-direction: column; }

.service-icon {
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.service-icon .material-icons { font-size: 26px; color: var(--white); }

/* Chips coloridos variados */
.services-grid .service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--clay-500) 0%, var(--clay-600) 100%); }
.services-grid .service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--sage-500) 0%, var(--sage-600) 100%); }
.services-grid .service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%); }
.services-grid .service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, var(--honey-500) 0%, var(--honey-600) 100%); }
.services-grid .service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, var(--dusty-500) 0%, var(--dusty-600) 100%); }
.services-grid .service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, var(--mauve-500) 0%, var(--mauve-600) 100%); }
.services-grid .service-card:nth-child(7) .service-icon { background: linear-gradient(135deg, var(--clay-400) 0%, var(--clay-500) 100%); }
.services-grid .service-card:nth-child(8) .service-icon { background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-400) 100%); }

.service-card-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 12px;
}

.service-card-text,
.service-card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-muted);
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--clay-600);
    text-decoration: none;
    transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
    margin-top: auto;
}

.service-card:hover .service-card-link { gap: 10px; color: var(--clay-500); }
.service-card-link .material-icons { font-size: 18px; }

/* ===== Content sections (materiais) ===== */
.content-section { padding: 80px 32px; background: var(--color-surface); }
.content-section:nth-child(even) { background: var(--off-white); }

/* List group */
.list-group { list-style: none; margin-bottom: 32px; }
.list-group-item {
    display: block;
    padding: 12px 18px;
    margin-bottom: 6px;
    background: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-sm);
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all var(--dur-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}
.list-group-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--clay-400);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--dur-fast) var(--ease-out);
}
a.list-group-item:hover { background: var(--clay-50); border-color: var(--clay-200); transform: translateX(4px); color: var(--navy-800); }
a.list-group-item:hover::before { transform: scaleY(1); }
li.list-group-item { cursor: default; }

.external-link { color: var(--clay-600); font-weight: 600; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.external-link:hover { color: var(--clay-500); }

/* ===== Video / Slides grids ===== */
.video-grid, .slides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 40px; }
.video-card, .slide-card { background: var(--warm-white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: all var(--dur-mid) var(--ease-spring); }
.video-card:hover, .slide-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--clay-200); }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-caption { padding: 16px 18px; font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--color-text-muted); }
.slide-embed { width: 100%; height: 350px; border: none; }
.slide-info { padding: 16px 18px; background: var(--grey-50); }
.slide-info strong { font-size: 14px; font-weight: 600; color: var(--color-primary); }

/* ===== Features (rádio) ===== */
.features-section { padding: 96px 32px; background: var(--off-white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--dur-mid) var(--ease-out);
    box-shadow: var(--shadow-xs);
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--clay-400); opacity: 0; transition: opacity var(--dur-mid) var(--ease-out); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--clay-200); }
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap { width: 56px; height: 56px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.feature-icon-wrap .material-icons { font-size: 24px; color: var(--white); }
.feature-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.feature-description { font-size: 14px; font-weight: 400; line-height: 1.7; color: var(--color-text-muted); }

/* ===== About + Cards (páginas de detalhe) ===== */
.about-section { padding: 96px 32px; background-color: var(--color-surface); }
.about-section .section-description { max-width: 820px; font-size: 16px; line-height: 1.8; }
.cards-section { padding: 96px 32px; background-color: var(--off-white); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.feature-icon .material-icons { font-size: 22px; color: var(--white); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Radio player card (claro) ===== */
.radio-player-card {
    background: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    padding: 40px;
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.radio-player-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy-700), var(--clay-500), var(--navy-400)); }
.radio-player-header { text-align: center; margin-bottom: 24px; }
.radio-player-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.radio-player-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-600); padding: 4px 14px; background: var(--clay-50); border-radius: var(--r-full); border: 1px solid var(--clay-100); }
.radio-player-embed { width: 100%; border-radius: var(--r-md); overflow: hidden; background: transparent; }
.radio-player-embed iframe { width: 100%; height: 200px; border: none; border-radius: var(--r-md); background: transparent; }
.radio-player-info { margin-top: 20px; padding: 16px 20px; background: var(--clay-50); border-radius: var(--r-md); text-align: center; border: 1px solid var(--clay-100); }
.radio-player-info p { font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--color-text-muted); }
.radio-player-info strong { color: var(--clay-600); font-weight: 600; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #FF4444; animation: pulse-dot 1.5s ease-in-out infinite; box-shadow: 0 0 10px rgba(255, 68, 68, 0.6); }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.35); opacity: 0.7; } }

/* ===== App section (rádio, navy escuro) ===== */
.app-section { padding: 96px 32px; background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%); text-align: center; position: relative; overflow: hidden; }
.app-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(216, 142, 110, 0.18) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(126, 155, 129, 0.14) 0%, transparent 50%); }
.app-container { position: relative; z-index: 1; max-width: var(--max-content); margin: 0 auto; }
.app-section .section-label { color: var(--clay-300); }
.app-section .section-title { color: var(--white); }
.app-section .section-description { color: rgba(247, 238, 230, 0.70); }
.app-icon { width: 96px; height: 96px; margin: 0 auto 32px; background: linear-gradient(135deg, var(--navy-600), var(--navy-400)); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(13, 27, 46, 0.40); animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.app-icon .material-icons { font-size: 48px; color: var(--clay-300); }
.app-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.app-section .btn-primary { background: linear-gradient(135deg, var(--clay-500) 0%, var(--clay-600) 100%); color: var(--white); }
.app-section .btn-primary:hover { background: linear-gradient(135deg, var(--clay-400) 0%, var(--clay-500) 100%); box-shadow: 0 10px 28px rgba(176, 87, 59, 0.45); }
.app-section .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.30); }
.app-section .btn-ghost:hover { border-color: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.08); }

/* ===== Contact ===== */
.contact-section {
    padding: 100px 32px;
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 90% 8%, rgba(197, 107, 75, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 8% 92%, rgba(126, 155, 129, 0.06) 0%, transparent 42%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-content);
    margin: 0 auto;
}

/* Variante com 4 colunas (ex.: home com card de Endereço) */
.contact-grid--wide { max-width: var(--max-wide); grid-template-columns: repeat(4, 1fr); }

.contact-card {
    background-color: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--dur-mid) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--clay-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-mid) var(--ease-out);
}

.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--clay-200); }
.contact-card:hover::before { transform: scaleX(1); }

.contact-icon-wrap {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    border-radius: var(--r-full);
    background: var(--clay-50);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--clay-100);
}

.contact-icon-wrap .material-icons { font-size: 30px; color: var(--clay-600); }
.contact-card:nth-child(2) .contact-icon-wrap { background: var(--sage-100); border-color: #D4E0D2; }
.contact-card:nth-child(2) .contact-icon-wrap .material-icons { color: var(--sage-600); }
.contact-card:nth-child(3) .contact-icon-wrap { background: var(--navy-50); border-color: var(--navy-100); }
.contact-card:nth-child(3) .contact-icon-wrap .material-icons { color: var(--navy-700); }
.contact-card:nth-child(4) .contact-icon-wrap { background: var(--honey-500); border-color: var(--honey-600); }
.contact-card:nth-child(4) .contact-icon-wrap .material-icons { color: var(--white); }

.contact-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.contact-card-text { font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--color-text-muted); font-style: normal; }
.contact-card-text a { color: var(--clay-600); text-decoration: none; font-weight: 600; transition: color var(--dur-fast) var(--ease-out); }
.contact-card-text a:hover { color: var(--clay-500); }

/* ===== CTA Band (navy escuro) ===== */
.cta-band { padding: 90px 32px; background: var(--off-white); }

.cta-band-inner {
    max-width: var(--max-content);
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-radius: var(--r-xl);
    padding: 66px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(58, 41, 28, 0.22);
}

.cta-band-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 16% 18%, rgba(216, 142, 110, 0.35) 0%, transparent 46%),
        radial-gradient(circle at 86% 88%, rgba(126, 155, 129, 0.22) 0%, transparent 46%);
    pointer-events: none;
}

.cta-band-inner > * { position: relative; z-index: 1; }

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-band-title em { font-style: normal; color: var(--clay-300); }
.cta-band-text { font-size: 17px; font-weight: 400; color: rgba(247, 238, 230, 0.85); margin-bottom: 36px; line-height: 1.7; }

.cta-band-inner .btn-primary { background: linear-gradient(135deg, var(--clay-500) 0%, var(--clay-600) 100%); color: var(--white); }
.cta-band-inner .btn-primary:hover { background: linear-gradient(135deg, var(--clay-400) 0%, var(--clay-500) 100%); box-shadow: 0 10px 28px rgba(176, 87, 59, 0.45); }

/* ===== Footer ===== */
.footer { background: var(--grey-50); color: var(--color-text); padding: 64px 32px 32px; border-top: 1px solid var(--color-border); }

.footer-container { max-width: var(--max-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: start; }

.footer-brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.footer-brand-sub { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-600); margin-bottom: 20px; }
.footer-address { font-size: 14px; font-weight: 400; line-height: 1.8; color: var(--color-text-muted); font-style: normal; }

.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-link { font-size: 14px; font-weight: 500; color: var(--grey-600); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.footer-link:hover { color: var(--clay-600); }

.footer-bottom {
    max-width: var(--max-wide);
    margin: 40px auto 0;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright { font-size: 13px; color: var(--grey-600); }

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--r-full);
    border: 1px solid var(--clay-200);
    background: var(--clay-50);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clay-600);
}

/* ===== Catálogo de livros (Editora) ===== */
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 28px; }
.book-card { display: flex; flex-direction: column; background: var(--warm-white); border: 1px solid var(--color-border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xs); transition: all var(--dur-mid) var(--ease-out); }
.book-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--clay-200); }
.book-cover { display: block; background: var(--off-white); }
.book-cover img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.book-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.book-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; line-height: 1.35; color: var(--ink); margin-bottom: 14px; flex-grow: 1; }
.book-links { display: flex; gap: 8px; flex-wrap: wrap; }
.book-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; text-decoration: none; padding: 6px 12px; border-radius: var(--r-full); border: 1px solid var(--clay-200); color: var(--clay-600); background: var(--clay-50); transition: all var(--dur-fast) var(--ease-out); }
.book-link:hover { background: var(--clay-100); border-color: var(--clay-300); }
.book-link .material-icons { font-size: 15px; }
.book-link--play { color: var(--navy-700); border-color: var(--navy-100); background: var(--navy-50); }
.book-link--play:hover { background: var(--navy-100); border-color: var(--navy-200); }

/* ===== Perfis (conselho editorial) ===== */
.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
.profile-card { background: var(--warm-white); border: 1px solid var(--color-border); border-radius: var(--r-lg); padding: 32px; text-align: center; box-shadow: var(--shadow-xs); transition: all var(--dur-mid) var(--ease-out); }
.profile-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--clay-200); }
.profile-photo { width: 110px; height: 110px; border-radius: var(--r-full); object-fit: cover; margin: 0 auto 18px; border: 4px solid var(--warm-white); box-shadow: var(--shadow-md); }
.profile-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.profile-role { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-600); margin-bottom: 12px; }
.profile-bio { font-size: 14px; line-height: 1.7; color: var(--color-text-muted); }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%);
    color: #ffffff;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.40);
    z-index: 999;
    transition: all var(--dur-mid) var(--ease-spring);
    text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.12) rotate(6deg); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55); }
.whatsapp-float .material-icons { font-size: 28px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .hero--split .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero--split .hero-content { max-width: 620px; margin: 0 auto; order: 2; }
    .hero--split .hero-description { margin-left: auto; margin-right: auto; }
    .hero--split .hero-actions { justify-content: center; }
    .hero--split .hero-media { order: 1; max-width: 520px; margin: 0 auto; }
    .hero--split .hero-media::before { display: none; }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .video-grid, .slides-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: 1fr; gap: 8px; }
    .trust-item + .trust-item { border-left: none; border-top: 1px solid var(--color-border); }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { align-items: flex-start; }
}

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

@media (max-width: 640px) {
    .nav-container { padding: 0 20px; height: 60px; }
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 60px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(251, 247, 241, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px 20px;
        gap: 4px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: all var(--dur-mid) var(--ease-out);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active { opacity: 1; pointer-events: all; transform: translateY(0); }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: 12px 16px; border-radius: var(--r-sm); }
    .nav-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; }

    .hero { padding: 116px 0 64px; }
    .hero-container { padding: 0 20px; }
    .services-section, .contact-section, .content-section, .features-section, .about-section, .cards-section { padding: 68px 20px; }
    .app-section { padding: 64px 20px; }
    .services-grid, .contact-grid, .features-grid, .cards-grid, .video-grid, .slides-grid { grid-template-columns: 1fr; }
    .app-buttons { flex-direction: column; align-items: center; }
    .trust-strip { padding: 40px 20px; }
    .cta-band { padding: 60px 20px; }
    .cta-band-inner { padding: 48px 24px; }
    .radio-player-card { padding: 24px; }
    .footer { padding: 48px 20px 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .whatsapp-float .material-icons { font-size: 24px; }
}

/* ===== Accessibility & Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 2px solid var(--clay-500); outline-offset: 3px; border-radius: 4px; }
::selection { background-color: var(--clay-500); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--grey-50); }
::-webkit-scrollbar-thumb { background: var(--clay-200); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--clay-400); }
