/* ============================
   IGUALCAST — REDESIGN 2025
   ============================ */

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

:root {
    --lilac:      #c3beef;
    --lavender:   #9b89c4;
    --violet:     #7c6b9e;
    --purple:     #5d4f7c;
    --mauve:      #cca9e8;
    --sky:        #d6e6e7;
    --teal:       #8bb8c2;
    --slate:      #6b8a9c;
    --cream:      #f7f2f9;
    --white:      #ffffff;
    --ink:        #2a2535;
    --ink-soft:   #5a5370;
    --ink-muted:  #8a829a;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  32px;
    --radius-xl:  60px;

    --shadow-soft: 0 4px 24px rgba(93,79,124,0.10);
    --shadow-md:   0 8px 40px rgba(93,79,124,0.15);
    --shadow-lg:   0 20px 60px rgba(93,79,124,0.20);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================
   UTILITY
   ============================ */

.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet);
    background: rgba(155,137,196,0.12);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag.light {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-header h2 em {
    font-style: italic;
    color: var(--violet);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 440px;
    margin: 0 auto;
}

/* ============================
   BUTTONS
   ============================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background: var(--violet);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(93,79,124,0.35);
}

.btn-primary:hover {
    background: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(93,79,124,0.45);
}

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ============================
   NAV
   ============================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    background: rgba(247,242,249,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(195,190,239,0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(247,242,249,0.97);
    box-shadow: var(--shadow-soft);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--purple);
    transition: color 0.2s;
}

.nav-logo:hover { color: var(--violet); }

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

.nav-link {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ink-soft);
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--violet);
    transition: width 0.25s ease;
}

.nav-link:hover { color: var(--violet); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
    background: var(--violet);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 100px;
    font-weight: 500;
}

.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--purple); color: var(--white); }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--purple);
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(42deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-42deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42,37,53,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

/* ============================
   HERO
   ============================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(145deg, #d8d0f2 0%, #c3beef 30%, #cca9e8 60%, #d6e6e7 100%);
    padding: 120px 28px 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #c3beef, transparent 70%);
    top: -200px; left: -200px;
    animation: orb-float 12s ease-in-out infinite;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #cca9e8, transparent 70%);
    bottom: -150px; right: -100px;
    animation: orb-float 16s ease-in-out infinite reverse;
}

.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #d6e6e7, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-float 20s ease-in-out infinite;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(255,255,255,0.45);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--purple);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-shadow: 0 4px 40px rgba(93,79,124,0.15);
}

.hero-title em {
    font-style: italic;
    font-weight: 600;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: rgba(93,79,124,0.8);
    margin-bottom: 48px;
    line-height: 1.4;
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(93,79,124,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(93,79,124,0.5), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(30px, -20px) scale(1.05); }
    66%  { transform: translate(-20px, 15px) scale(0.97); }
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50%  { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================
   MISSÃO
   ============================ */

.section-missao {
    padding: 120px 0;
    background: var(--white);
}

.missao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.missao-text .section-tag { margin-bottom: 20px; }

.missao-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 28px;
}

.missao-text h2 em {
    font-style: italic;
    color: var(--violet);
}

.missao-text p {
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.missao-text p strong {
    color: var(--violet);
    font-weight: 500;
}

.butterfly-card {
    background: linear-gradient(135deg, rgba(195,190,239,0.2), rgba(214,230,231,0.3));
    border: 1px solid rgba(195,190,239,0.35);
    border-radius: var(--radius-lg);
    padding: 56px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.butterfly-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(204,169,232,0.3), transparent 70%);
    border-radius: 50%;
}

.butterfly-svg {
    width: 200px;
    height: 200px;
    margin: 0 auto 28px;
    display: block;
    animation: butterfly-hover 5s ease-in-out infinite;
}

@keyframes butterfly-hover {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-10px) rotate(1deg); }
}

.butterfly-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.6;
}

.butterfly-caption em {
    color: var(--violet);
    font-style: normal;
}

/* ============================
   STATS
   ============================ */

.section-stats {
    background: linear-gradient(135deg, var(--violet), var(--purple));
    padding: 72px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px 40px;
}

.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* ============================
   TIME
   ============================ */

.section-time {
    padding: 120px 0;
    background: var(--cream);
}

.time-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.time-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid rgba(195,190,239,0.3);
    border-radius: var(--radius-md);
    min-width: 120px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.time-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.time-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lilac), var(--mauve));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple);
}

.time-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    text-align: center;
}

/* ============================
   CAMPANHAS
   ============================ */

.section-campanhas {
    padding: 120px 0;
    background: var(--white);
}

.campanhas-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.campanha-card {
    background: var(--cream);
    border: 1px solid rgba(195,190,239,0.3);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.campanha-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.campanha-featured {
    background: linear-gradient(135deg, rgba(195,190,239,0.25), rgba(214,230,231,0.2));
    border-color: rgba(155,137,196,0.3);
}

.campanha-icon {
    width: 52px;
    height: 52px;
    color: var(--violet);
    margin-bottom: 24px;
}

.campanha-icon svg { width: 100%; height: 100%; }

.campanha-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.campanha-card p {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 28px;
}

.campanha-link {
    color: var(--violet);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.campanha-link:hover { gap: 12px; }

/* ============================
   PODCASTS
   ============================ */

.section-podcasts {
    background: var(--cream);
}

.podcast-hero {
    position: relative;
    background: linear-gradient(145deg, #9b89c4 0%, #c3beef 45%, #d6e6e7 100%);
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.podcast-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.podcast-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.p-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #cca9e8, transparent 70%);
    top: -100px; right: -80px;
}

.p-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #d6e6e7, transparent 70%);
    bottom: -80px; left: -60px;
}

.podcast-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    text-shadow: 0 4px 30px rgba(93,79,124,0.2);
}

.podcast-title em {
    font-style: italic;
    font-weight: 600;
}

.podcast-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    position: relative;
}

/* Episodes */
.podcast-episodes {
    padding: 80px 0 120px;
}

.episodes-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 48px;
    letter-spacing: 0.06em;
}

.episodes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.episode-card {
    background: var(--white);
    border: 1px solid rgba(195,190,239,0.3);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.episode-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.episode-thumb {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.episode-thumb-inner {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.episode-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.episode-thumb:hover .episode-cover {
    transform: scale(1.03);
}

.ep1 {
    background: linear-gradient(135deg, #f0e8f5, #e4d8f0, #d6c8e8);
}

.ep2 {
    background: linear-gradient(135deg, #e0eef4, #d4e8f0, #c8dcea);
}

.ep-logo {
    width: 60%;
    height: 60%;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93,79,124,0.15);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.episode-thumb:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: rgba(93,79,124,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.25s ease;
}

.episode-thumb:hover .play-btn {
    transform: scale(1);
}

.play-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.episode-num {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(93,79,124,0.85);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.episode-info {
    padding: 28px 28px 32px;
}

.episode-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
}

.episode-info p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 18px;
}

.episode-meta {
    display: flex;
    gap: 8px;
}

.ep-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--violet);
    background: rgba(155,137,196,0.12);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ============================
   FOOTER
   ============================ */

.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}

.footer-logo {
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 240px;
}

.footer-links, .footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links strong, .footer-info strong {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--lilac); }

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
    .missao-grid { grid-template-columns: 1fr; gap: 48px; }
    .campanhas-grid { grid-template-columns: 1fr; }
    .episodes-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { padding: 14px 20px; }

    .nav-hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 80px 36px 40px;
        gap: 8px;
        box-shadow: -8px 0 40px rgba(0,0,0,0.12);
        transition: right 0.3s ease;
        z-index: 1001;
        align-items: flex-start;
    }

    .nav-links.open { right: 0; }

    .nav-overlay { display: block; }
    .nav-overlay.visible { opacity: 1; pointer-events: all; }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(195,190,239,0.2);
    }

    .nav-link.nav-cta {
        margin-top: 16px;
        padding: 12px 24px;
        display: inline-block;
        width: auto;
        border-bottom: none;
    }

    .stat-divider { display: none; }
    .stat-item { padding: 16px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .section-missao, .section-time,
    .section-campanhas, .podcast-episodes { padding: 80px 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 4.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; max-width: 300px; }
    .campanha-card { padding: 32px 24px; }
    .episode-info { padding: 20px; }
}