/* ═══════════════════════════════════════════════
   DESIGN SYSTEM — Representantes RI UÉvora
   Estilo institucional/académico inspirado na UÉ
   ═══════════════════════════════════════════════ */

:root {
    /* ── Palette UÉ institucional ── */
    --bordeaux: #8B1A2B;
    --bordeaux-dark: #6A1423;
    --bordeaux-light: #A8293E;
    --bordeaux-pale: rgba(139, 26, 43, 0.08);
    --gold: #C9A84C;

    /* ── Tons claros institucionais ── */
    --bg-white: #FFFFFF;
    --bg-light: #F5F6FA;
    --bg-grey: #EEF0F5;
    --bg-header: #3C3C3C;
    --bg-header-top: #2B2B2B;
    
    /* ── Texto ── */
    --text-dark: #1D1D1D;
    --text-body: #4A4A4A;
    --text-secondary: #6E7180;
    --text-muted: #9DA2B0;
    --text-light: #FFFFFF;

    /* ── Bordas e sombras ── */
    --border: #E0E3EA;
    --border-light: #ECEEF3;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);

    /* ── Spacing / Layout ── */
    --container-width: 1100px;
    --section-padding: 72px;
    --radius: 4px;
    --radius-md: 8px;

    /* ── Transitions ── */
    --transition-fast: 180ms ease;
    --transition: 300ms ease;
}

/* ═══════════════ RESET & BASE ═══════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ═══════════════ UTILITIES ═══════════════ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section--grey {
    background: var(--bg-light);
}

.text-accent {
    color: var(--bordeaux);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
    background: var(--bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.85;
}

.ue-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.logo-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    letter-spacing: 0.03em;
}

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

.nav-link {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    border-bottom: 2px solid var(--bordeaux-light);
}

/* ── Hamburger ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2000;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════ PAGE BANNER ═══════════════ */
.page-banner {
    background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 60%, var(--bordeaux-light) 100%);
    padding: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.page-banner h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .sep {
    opacity: 0.4;
}

/* ═══════════════ HERO (Index only) ═══════════════ */
.hero {
    background: var(--bordeaux-dark);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    z-index: 3;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bordeaux-dark);
}

.hero-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-carousel img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(80, 15, 25, 0.85) 0%, rgba(139, 26, 43, 0.70) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    color: #fff;
}

.hero-content--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content--centered .hero-ctas {
    justify-content: center;
}

.hero-content--centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hero h1 span {
    color: var(--gold-light, #E0C97A);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-info-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.hero-info-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

.btn-bordeaux:hover {
    background: var(--bordeaux-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

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

.btn-outline-dark:hover {
    background: var(--bordeaux);
    color: #fff;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(2px);
}

/* ═══════════════ SECTION HEADER ═══════════════ */
.section-header {
    margin-bottom: 48px;
}

.section-header.center {
    text-align: center;
}

.section-line {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--bordeaux);
    margin-bottom: 16px;
    border-radius: 2px;
}

.section-header.center .section-line {
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bordeaux);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ═══════════════ CARDS (Proposals style) ═══════════════ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.card-grid--wide {
    max-width: 1080px;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bordeaux);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bordeaux-pale);
    border-radius: var(--radius);
    color: var(--bordeaux);
    margin-bottom: 16px;
}

.card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-grey);
    line-height: 1;
    pointer-events: none;
}

.card:hover .card-number {
    color: var(--bordeaux-pale);
}

.card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════ TEAM SECTION ═══════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.team-photo {
    aspect-ratio: 4 / 3;
    background: var(--bg-grey);
    overflow: hidden;
    border-bottom: 3px solid var(--bordeaux);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bordeaux);
    padding: 3px 10px;
    background: var(--bordeaux-pale);
    border-radius: 100px;
    margin-bottom: 10px;
}

.team-name {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════ CTA BAND ═══════════════ */
.cta-band {
    background: var(--bordeaux);
    padding: 48px 0;
    text-align: center;
    position: relative;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.cta-band h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta-band p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ═══════════════ FORM PAGE ═══════════════ */
.form-container {
    max-width: 620px;
    margin: 0 auto;
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bordeaux);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--bordeaux);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* Button states (loading / success) */
.btn-loading, .btn-success { display: none; align-items: center; gap: 8px; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline-flex; }
.btn.loading { pointer-events: none; opacity: 0.85; }
.btn-submit.success { background: #27ae60; }
.btn-submit.success .btn-text { display: none; }
.btn-submit.success .btn-success { display: inline-flex; }

@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; }

.form-success {
    display: none;
    text-align: center;
    padding: 32px 16px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success .success-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.form-success h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ═══════════════ VERIFICATION SECTION ═══════════════ */
.verification-section {
    display: none;
    padding: 16px 0;
    animation: fadeInUp 0.4s ease;
}

.verification-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bordeaux-pale);
    border-radius: 50%;
    color: var(--bordeaux);
    margin: 0 auto 16px;
}

.verification-code-input {
    text-align: center;
    font-size: 1.6rem !important;
    font-family: 'Courier New', monospace !important;
    letter-spacing: 6px;
    padding: 14px 16px !important;
    font-weight: 700;
}

.verification-code-input::placeholder {
    letter-spacing: 6px;
    opacity: 0.3;
}

.verification-error {
    display: none;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    margin-top: 8px;
    text-align: center;
}

.verification-link {
    background: none;
    border: none;
    color: var(--bordeaux);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 0;
    transition: opacity var(--transition-fast);
}

.verification-link:hover {
    opacity: 0.7;
}

.verification-link:disabled {
    color: var(--text-muted);
    cursor: default;
}

.verification-link:disabled:hover {
    opacity: 1;
}

/* ═══════════════ INFO CARDS GRID (Form page) ═══════════════ */
.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

/* ═══════════════ QUICK LINKS (Index) ═══════════════ */
.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.quick-link:hover {
    box-shadow: var(--shadow);
    border-color: var(--bordeaux);
    transform: translateY(-2px);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bordeaux-pale);
    border-radius: var(--radius);
    color: var(--bordeaux);
}

.quick-link h3 {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.quick-link p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.quick-link .arrow {
    margin-left: auto;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.quick-link:hover .arrow {
    color: var(--bordeaux);
    transform: translateX(3px);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    background: var(--bg-header-top);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    margin-top: 32px;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    text-align: center;
}

/* ═══════════════ FORM CONSENT CHECKBOX ═══════════════ */
.form-consent {
    margin-top: 4px;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-body);
}
.consent-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--bordeaux);
}
.consent-label a {
    color: var(--bordeaux);
    text-decoration: underline;
}
.consent-label a:hover {
    color: var(--bordeaux-dark);
}

/* ═══════════════ CONTENT PAGES (privacidade, recursos) ═══════════════ */
.content-page {
    max-width: 800px;
    margin: 0 auto;
}
.content-page h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bordeaux-pale);
}
.content-page h2:first-of-type {
    margin-top: 0;
}
.content-page h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 24px 0 8px;
}
.content-page p,
.content-page li {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
}
.content-page ul {
    margin: 8px 0 16px;
    padding-left: 22px;
}
.content-page li {
    margin-bottom: 6px;
}
.content-page a {
    color: var(--bordeaux);
    text-decoration: underline;
}
.content-page a:hover {
    color: var(--bordeaux-dark);
}
.content-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-left: 3px solid var(--bordeaux);
    border-radius: 4px;
}

/* CC vs NERIUE comparison */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}
.compare-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.compare-card h4 {
    font-family: 'Merriweather', serif;
    color: var(--bordeaux);
    margin-bottom: 10px;
    font-size: 1rem;
}
.compare-card ul {
    margin: 0;
    padding-left: 20px;
}
.compare-card li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-body);
    margin-bottom: 4px;
}
@media (max-width: 640px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ accordion */
.faq-section-title {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--bordeaux);
    margin: 28px 0 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--bordeaux-pale);
}
.faq-section-title:first-child {
    margin-top: 0;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: var(--bg-white);
    overflow: hidden;
}
.faq-item summary {
    padding: 16px 48px 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    position: relative;
    font-size: 0.96rem;
    line-height: 1.4;
    transition: background 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--bordeaux);
    line-height: 1;
    transition: transform 0.25s ease;
    width: 20px;
    text-align: center;
    font-weight: 400;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover {
    background: var(--bg-light);
}
.faq-content {
    padding: 4px 20px 18px;
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.92rem;
    border-top: 1px solid var(--border-light);
}
.faq-content p {
    margin-bottom: 10px;
    margin-top: 12px;
}
.faq-content p:last-child {
    margin-bottom: 0;
}
.faq-content ul {
    margin: 8px 0 12px;
    padding-left: 20px;
}
.faq-content li {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 4px;
}
.faq-content a {
    color: var(--bordeaux);
    text-decoration: underline;
}

/* Recursos categories */
.resource-section {
    margin-bottom: 32px;
}
.resource-section h2 {
    border-bottom: 2px solid var(--bordeaux-pale);
}
.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.resource-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.resource-list li:last-child {
    border-bottom: none;
}
.resource-list .resource-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.resource-list .resource-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-disclaimer strong {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

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

    .quick-links {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-header);
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }
}

/* ═══════════════ CUSTOM CURSOR (desktop only) ═══════════════ */
@media (hover: hover) and (pointer: fine) {
    /* Esconder cursor nativo em tudo */
    *, *::before, *::after {
        cursor: none !important;
    }

    .cursor-follower {
        position: fixed;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        border: 2px solid var(--bordeaux);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate3d(-100px, -100px, 0);
        will-change: transform, width, height, background;
        transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
        opacity: 0;
        box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.85), inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
    }

    .cursor-follower.visible {
        opacity: 1;
    }

    .cursor-follower.hover {
        width: 52px;
        height: 52px;
        background: var(--bordeaux-pale);
        border-color: var(--bordeaux-dark);
    }

    .cursor-follower.click {
        width: 24px;
        height: 24px;
        background: var(--bordeaux);
        border-color: var(--bordeaux);
    }

    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background: var(--bordeaux);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate3d(-100px, -100px, 0);
        will-change: transform;
        opacity: 0;
        transition: opacity 0.2s ease, background 0.2s ease;
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 0.95),
            0 0 0 3.5px rgba(0, 0, 0, 0.25),
            0 0 12px rgba(139, 26, 43, 0.5);
    }

    .cursor-dot.visible {
        opacity: 1;
    }

    .cursor-dot.hover {
        background: var(--gold);
    }
}
