/* ============================================================
   LAGO – style.css  (Part 1: tokens, reset, navbar, hero)
   Paleta: rosa mauve #D97BA0, lilás #7B5EA7, fundo #FDF0F5
   ============================================================ */

/* ── Google Fonts já carregadas no HTML ── */

/* ── CSS Tokens ── */
:root {
    --pink: #d97ba0;
    --pink-light: #eeb8cc;
    --pink-pale: #fde8f0;
    --purple: #7b5ea7;
    --purple-light: #9b72c8;
    --purple-dark: #5a4080;
    --bg: #fdf0f5;
    --bg2: #fae6f0;
    --white: #ffffff;
    --text: #2d1b2e;
    --text-2: #6b4e71;
    --text-3: #9e829f;
    --border: rgba(123, 94, 167, 0.15);
    --shadow-sm: 0 2px 12px rgba(123, 94, 167, 0.1);
    --shadow-md: 0 8px 32px rgba(123, 94, 167, 0.16);
    --shadow-lg: 0 20px 60px rgba(123, 94, 167, 0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --nav-h: 72px;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--nav-h);
    background: rgba(253, 240, 245, 0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(253, 240, 245, 0.96);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px rgba(217, 123, 160, 0.3);
}
.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-sub {
    display: block;
    font-size: 0.68rem;
    color: var(--text-2);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: -2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--purple);
    background: rgba(123, 94, 167, 0.1);
}
.nav-link.active {
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--purple);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── VIEWS ── */
.view {
    display: none;
    min-height: 100vh;
}
.view.active {
    display: block;
}
#view-home.active {
    display: flex;
    flex-direction: column;
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 80px;
}
.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: float 8s ease-in-out infinite;
}
.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--pink-light), transparent 70%);
    top: -120px;
    left: -100px;
}
.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple-light), transparent 70%);
    top: 200px;
    right: -80px;
    animation-delay: -3s;
}
.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    bottom: 0;
    left: 40%;
    animation-delay: -6s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-24px) scale(1.04);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 94, 167, 0.1);
    border: 1px solid rgba(123, 94, 167, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 3px rgba(217, 123, 160, 0.3);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(217, 123, 160, 0.3);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(217, 123, 160, 0.1);
    }
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 20px;
}
.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 36px;
}
.hero-subtitle strong {
    color: var(--purple);
    font-weight: 700;
}

/* Hero buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 94, 167, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 94, 167, 0.45);
}
.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}
.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat {
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}
.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple);
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 2px;
    display: block;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
.logo-glow-ring {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(217, 123, 160, 0.25), rgba(123, 94, 167, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 16px rgba(217, 123, 160, 0.12),
        0 0 0 32px rgba(123, 94, 167, 0.07),
        var(--shadow-lg);
    animation: logo-breathe 5s ease-in-out infinite;
}
@keyframes logo-breathe {
    0%,
    100% {
        box-shadow:
            0 0 0 16px rgba(217, 123, 160, 0.12),
            0 0 0 32px rgba(123, 94, 167, 0.07),
            var(--shadow-lg);
    }
    50% {
        box-shadow:
            0 0 0 24px rgba(217, 123, 160, 0.18),
            0 0 0 48px rgba(123, 94, 167, 0.1),
            var(--shadow-lg);
    }
}
.hero-logo {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
}
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--purple);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
}
.card-f1 {
    top: 10%;
    left: -30px;
    animation-delay: -1s;
}
.card-f2 {
    bottom: 15%;
    left: -20px;
    animation-delay: -3s;
}
.card-f3 {
    top: 35%;
    right: -20px;
    animation-delay: -5s;
}
.floating-card svg {
    color: var(--pink);
}

/* Features strip */
.features-strip {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    overflow: hidden;
}
.features-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 25%
    );
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    color: inherit;
}
.feature-item:last-child {
    border-right: none;
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.07);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.feature-text h3 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.feature-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}

/* ============================================================
   Part 2: Page layouts, cards, docs, atividades, contato, footer
   ============================================================ */

/* ── Page containers (shared) ── */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 60px) 32px 80px;
}
.page-header {
    text-align: center;
    margin-bottom: 64px;
}
.page-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(123, 94, 167, 0.12), rgba(217, 123, 160, 0.12));
    border: 1px solid rgba(123, 94, 167, 0.2);
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}
.page-title .highlight {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-desc {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Loading & Empty states ── */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 0;
    color: var(--text-3);
}
.spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(123, 94, 167, 0.15);
    border-top-color: var(--purple);
    animation: spin 0.75s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.spinner-sm {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: spin 0.75s linear infinite;
}
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 80px 0;
    text-align: center;
    color: var(--text-3);
}
.empty-icon {
    opacity: 0.35;
}
.empty-state p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-2);
}
.empty-state span {
    font-size: 0.875rem;
}

/* ── Tags ── */
.doc-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}
.tag-estatuto {
    background: rgba(123, 94, 167, 0.12);
    color: var(--purple);
}
.tag-orientacao {
    background: rgba(217, 123, 160, 0.15);
    color: #b35580;
}
.tag-regulamento {
    background: rgba(90, 64, 128, 0.12);
    color: var(--purple-dark);
}
.tag-evento {
    background: rgba(123, 94, 167, 0.12);
    color: var(--purple);
}
.tag-curso {
    background: rgba(217, 123, 160, 0.15);
    color: #b35580;
}
.tag-ambulatorio {
    background: rgba(155, 114, 200, 0.15);
    color: var(--purple);
}
.tag-oficina {
    background: rgba(217, 123, 160, 0.18);
    color: #a85580;
}
.tag-pratica {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}
.tag-outro {
    background: rgba(158, 130, 159, 0.12);
    color: var(--text-2);
}
.status-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}
.status-proximo {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}
.status-realizado {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
}
.status-cancelado {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

/* ── SOBRE ── */
.sobre-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.sobre-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.sobre-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(217, 123, 160, 0.15), rgba(123, 94, 167, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    margin-bottom: 20px;
}
.sobre-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.sobre-card p {
    color: var(--text-2);
    line-height: 1.7;
    font-size: 0.9rem;
}
.values-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 0.9rem;
}
.check {
    color: var(--pink);
    font-size: 0.75rem;
}

/* Timeline */
.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
    text-align: center;
}
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--pink));
}
.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}
.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    margin-top: 6px;
    margin-left: 20px;
    box-shadow: 0 0 0 5px rgba(123, 94, 167, 0.15);
    position: relative;
    z-index: 1;
}
.timeline-content {
    flex: 1;
}
.timeline-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pink);
}
.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 4px 0 8px;
}
.timeline-content p {
    color: var(--text-2);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ── DOCUMENTOS ── */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.doc-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}
.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 94, 167, 0.3);
}
.doc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(217, 123, 160, 0.15), rgba(123, 94, 167, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
}
.doc-body {
    flex: 1;
    min-width: 0;
}
.doc-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 6px 0 4px;
}
.doc-desc {
    font-size: 0.8rem;
    color: var(--text-3);
    line-height: 1.5;
}
.doc-date {
    font-size: 0.72rem;
    color: var(--text-3);
    margin-top: 6px;
    display: block;
}
.doc-arrow {
    color: var(--pink);
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
}
.doc-card:hover .doc-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ── ATIVIDADES ── */
.atividades-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    background: var(--white);
}
.filter-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(123, 94, 167, 0.3);
}
.ativ-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.ativ-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.ativ-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.ativ-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 60px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    padding: 8px;
}
.ativ-day {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}
.ativ-month {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.9;
}
.ativ-body {
    flex: 1;
    min-width: 0;
}
.ativ-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.ativ-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.ativ-desc {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.55;
    margin-bottom: 12px;
}
.ativ-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.ativ-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-3);
}
.ativ-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple);
}
.ativ-link:hover {
    color: var(--pink);
}

/* ── CONTATO ── */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contato-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.contato-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}
.contato-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(217, 123, 160, 0.15), rgba(123, 94, 167, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}
.contato-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.contato-card a,
.contato-card p {
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 500;
}
.contato-card a:hover {
    color: var(--pink);
}

.contato-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contato-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
}
.contato-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-2);
}
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    resize: none;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 94, 167, 0.1);
}
.form-feedback.success {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ── FOOTER ── */
.footer {
    background: linear-gradient(160deg, var(--purple-dark) 0%, #3a2558 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px 48px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 48px;
}
.footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.footer-brand strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}
.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.75;
}
.footer-inst {
    margin-top: 4px;
    font-size: 0.75rem;
    opacity: 0.55;
}
.footer-links h5,
.footer-social h5 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink-light);
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-link {
    font-size: 0.875rem;
    opacity: 0.7;
    padding: 4px 0;
    transition: var(--transition);
}
.footer-link:hover {
    opacity: 1;
    color: var(--pink-light);
}
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    opacity: 0.75;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 32px;
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.45;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--nav-h) + 32px);
    }
    .hero-subtitle {
        margin: 0 auto 36px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }
    .features-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-item:nth-child(2) {
        border-right: none;
    }
    .sobre-grid {
        grid-template-columns: 1fr;
    }
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(253, 240, 245, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 12px 0;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-link {
        padding: 12px 24px;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }
    .features-strip {
        grid-template-columns: 1fr 1fr;
    }
    .page-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .docs-grid,
    .ativ-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .contato-form-card {
        padding: 28px 20px;
    }
}
@media (max-width: 480px) {
    .features-strip {
        grid-template-columns: 1fr;
    }
    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .ativ-card {
        flex-direction: column;
    }
}

/* ── Diretoria ── */
.diretoria-section {
    margin-top: 64px;
}
.diretoria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.diretoria-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 0;
}
.diretoria-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.diretoria-presidente {
    border-color: rgba(217, 123, 160, 0.4);
    background: linear-gradient(135deg, rgba(217, 123, 160, 0.06), rgba(123, 94, 167, 0.06));
}
.diretoria-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diretoria-presidente .diretoria-avatar {
    width: 52px;
    height: 52px;
    font-size: 0.9rem;
    box-shadow: 0 0 0 4px rgba(217, 123, 160, 0.25);
}
.diretoria-info {
    min-width: 0;
    flex: 1;
}
.diretoria-cargo {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pink);
    display: block;
    margin-bottom: 2px;
}
.diretoria-info h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.diretoria-info a {
    font-size: 0.7rem;
    color: var(--text-3);
    transition: var(--transition);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.diretoria-info a:hover {
    color: var(--purple);
}
@media (max-width: 900px) {
    .diretoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .diretoria-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Form error feedback ── */
.form-feedback.error {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── Contato CTA card (substitui formulário) ── */
.contato-cta-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.contato-cta-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.cta-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}
.cta-icon-big {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(217, 123, 160, 0.15), rgba(123, 94, 167, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}
.cta-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.cta-header p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.6;
}
.cta-channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.cta-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--bg);
    transition: var(--transition);
    text-decoration: none;
}
.cta-channel:hover {
    border-color: var(--purple);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.cta-ch-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-ch-insta {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}
.cta-ch-email {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
}
.cta-ch-text {
    flex: 1;
}
.cta-ch-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.cta-ch-text span {
    font-size: 0.82rem;
    color: var(--text-2);
}
.cta-arrow {
    color: var(--text-3);
    transition: var(--transition);
    flex-shrink: 0;
}
.cta-channel:hover .cta-arrow {
    color: var(--purple);
    transform: translateX(3px);
}
.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-3);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(123, 94, 167, 0.05);
    border: 1px solid var(--border);
}
.cta-note svg {
    flex-shrink: 0;
    color: var(--purple);
}

/* ── Footer Partners + App Stores ── */
.footer-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 24px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 28px 40px;
}
.footer-partners {
    padding: 0;
    border-top: none;
    display: block;
}
.footer-partners-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.partners-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink-light);
    opacity: 0.7;
}
.partner-logo-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.partner-logo-link:hover {
    background: #fff;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.partner-logo {
    height: 44px;
    width: auto;
}

/* ── Footer App Stores ── */
.footer-stores {
    padding: 0;
    border-top: none;
    display: block;
    flex: 1 1 280px;
    max-width: 360px;
}
.footer-stores-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.stores-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink-light);
    opacity: 0.7;
}
.store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.store-badge-link {
    display: block;
    line-height: 0;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.store-badge-link:hover {
    transform: scale(1.04);
    filter: brightness(1.08);
}
.store-badge {
    height: 40px;
    width: auto;
    max-width: 140px;
    display: block;
    object-fit: contain;
}
.store-badge-link--beta .store-badge {
    max-width: 150px;
}
.store-beta-note {
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    padding: 0 4px;
}
.store-beta-note strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ── Footer Bottom + Devya credit ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.devya-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 12px 5px 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.devya-credit:hover {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
}
.devya-logo {
    height: 22px;
    width: auto;
}
