/* ================================================
   Template D — "Elegant Editorial"
   TopVitoria
   Light cool blue-gray bg, Cyan/Teal + Burnt orange accents
   Playfair Display (serif) + Inter (sans)
   Rounded, soft, magazine-style
   ================================================ */

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

:root {
    --bg-body: #f8fafb;
    --bg-card: #ffffff;
    --bg-alt: #edf2f4;
    --bg-dark: #0f1923;
    --text: #1a2332;
    --text-muted: #546478;
    --text-light: #8b9aab;
    --accent: #0891b2;
    --accent-hover: #0e7490;
    --accent-2: #ea580c;
    --accent-2-light: #fff7ed;
    --border: #dde4e8;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 1px 3px rgba(26,35,50,.06);
    --shadow-md: 0 4px 16px rgba(26,35,50,.08);
    --shadow-lg: 0 8px 32px rgba(26,35,50,.1);
    --shadow-xl: 0 16px 48px rgba(26,35,50,.12);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1140px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { color: var(--text-muted); }

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

.no-scroll { overflow: hidden; }

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--transition), transform .6s var(--transition);
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Age Strip --- */
.age-strip {
    background: var(--bg-dark);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    padding: 8px 0;
}
.age-strip__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.age-pill {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}
.age-strip a {
    color: rgba(255,255,255,.8);
    font-weight: 500;
}
.age-strip a:hover { color: #fff; }
.age-sep { color: rgba(255,255,255,.3); }
.age-strip__msg {
    margin-left: auto;
    color: rgba(255,255,255,.5);
    font-style: italic;
}

/* --- Header --- */
.header {
    position: sticky;
    top: 3px;
    overflow: hidden;
    z-index: 1000;
    background: rgba(248,250,251,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: box-shadow var(--transition), padding var(--transition);
}
.main.open {
    filter: blur(1.8px);
    backdrop-filter: brightness(0.4);
}
.header.open {
    overflow: visible;
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-icon {
    font-size: 22px;
    color: var(--accent-2);
}
.logo-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -.3px;
}
.logo-name strong {
    font-weight: 700;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
}
.nav a:hover,
.nav a.active {
    color: var(--accent);
    background: rgba(8,145,178,.06);
}

.nav .nav-close {
    display: none;
}
.nav.open .nav-close {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8,145,178,.3);
}
.btn--outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn--outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn--white {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
}
.btn--white:hover {
    background: rgba(255,255,255,.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--accent);
}
.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
}
.btn--ghost:hover {
    border-color: var(--text-muted);
    color: var(--text);
}
.btn--sm {
    padding: 10px 22px;
    font-size: 14px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    background: rgba(8,145,178,.08);
    padding: 6px 16px;
    border-radius: 20px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-header p {
    font-size: 17px;
    line-height: 1.7;
}

/* === HERO === */
.hero {
    padding: 100px 0 80px;
    background:
        linear-gradient(175deg, rgba(15,25,35,.82) 0%, rgba(8,145,178,.65) 40%, rgba(15,25,35,.85) 100%),
        url('https://plus.unsplash.com/premium_photo-1718826130464-8009a406f2eb?w=1920&q=80') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero h1, .hero h1 em { color: #fff; }
.hero h1 em::after { background: rgba(8,145,178,.35); }
.hero__sub { color: rgba(255,255,255,.75); }
.hero__seal { border-color: var(--accent-2); }
.seal__year, .seal__label { color: var(--accent-2); }
.hero__seal::before { border-color: var(--accent-2); }
.hero .btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.hero .btn--outline:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.7);
    color: #fff;
}
.trust-chip {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,88,12,.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero__center {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.hero__seal {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-2);
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}
.hero__seal::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed var(--accent-2);
    opacity: .4;
}
.seal__year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--accent-2);
    line-height: 1;
}
.seal__label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-2);
    line-height: 1.2;
    margin-top: 2px;
}
.hero h1 {
    margin-bottom: 20px;
    font-weight: 800;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
}
.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(8,145,178,.15);
    border-radius: 4px;
    z-index: -1;
}
.hero__sub {
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

/* === CASINO GRID === */
.rankings {
    padding: 80px 0;
}
.casino-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

/* Featured Casino Card */
.casino-card--featured {
    grid-column: 1 / -1;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-card) 60%, rgba(8,145,178,.04) 100%);
    border: 2px solid var(--accent);
    position: relative;
}
.casino-card__ribbon {
    position: absolute;
    top: 16px;
    right: 20px;
    background: var(--accent-2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: .5px;
}
.casino-card--featured .casino-card__bonus {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}
.casino-card--featured .casino-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 600px;
}
.casino-card--featured .btn { font-size: 16px; padding: 16px 32px; }

/* Standard Casino Card */
.casino-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
    position: relative;
}
.casino-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(8,145,178,.2);
}
.casino-card__pos {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-2);
    opacity: .5;
}
.casino-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}
.casino-card__header h3 {
    font-size: 20px;
}
.casino-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.rating-score {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.rating-stars {
    font-size: 12px;
    color: var(--accent-2);
    letter-spacing: 1px;
}
.rating-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.casino-card__bonus {
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.casino-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.casino-card__features span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 5px 12px;
    border-radius: 20px;
}
.casino-card .btn {
    align-self: flex-start;
    margin-top: auto;
}
.legal-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

/* === TRUST SECTION === */
.trust-section {
    padding: 80px 0;
    background: var(--bg-alt);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.trust-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.trust-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.trust-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}
.trust-card p {
    font-size: 14px;
    line-height: 1.65;
}

/* === INFO ACCORDION === */
.info-section {
    padding: 80px 0;
}
.info-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}
.info-layout__text .section-label {
    display: inline-block;
    margin-bottom: 12px;
}
.info-layout__text h2 {
    margin-bottom: 16px;
}
.info-layout__text p {
    font-size: 16px;
}
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--bg-card);
    transition: box-shadow var(--transition);
}
.accordion-item.open {
    box-shadow: var(--shadow-md);
    border-color: rgba(8,145,178,.2);
}
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 12px;
    transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--accent); }
.accordion-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.accordion-item.open .accordion-panel {
    max-height: 300px;
    padding: 0 22px 18px;
}
.accordion-panel p {
    font-size: 14px;
    line-height: 1.7;
}
.accordion-panel a {
    text-decoration: underline;
}

/* === METHODOLOGY TIMELINE === */
.methodology {
    padding: 80px 0;
    background: var(--bg-alt);
}
.method-timeline {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.method-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    background: var(--border);
}
.method-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.method-step:last-child { margin-bottom: 0; }
.method-step__marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(8,145,178,.3);
    position: relative;
    z-index: 1;
}
.method-step__content {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    flex: 1;
}
.method-step__content h3 {
    margin-bottom: 8px;
    font-size: 18px;
}
.method-step__content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}
.method-step__weight {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(8,145,178,.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
}
.cta-banner__inner {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(8,145,178,.15);
    pointer-events: none;
}
.cta-banner__inner h2 {
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-banner__inner p {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}
.cta-banner__inner .btn {
    position: relative;
    z-index: 1;
}

/* === FAQ === */
.faq {
    padding: 80px 0;
    background: var(--bg-alt);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.faq-list details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-list details[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(8,145,178,.2);
}
.faq-list summary {
    padding: 16px 22px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: var(--text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--transition);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-list details[open] summary::after {
    transform: rotate(45deg);
}
.faq-list summary:hover { color: var(--accent); }
.faq-answer {
    padding: 0 22px 18px;
}
.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
}
.faq-answer a { text-decoration: underline; }

/* === RESPONSIBLE GAMING BLOCK === */
.rg-block {
    background: var(--bg-card);
    border: 2px solid var(--accent-2);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}
.rg-block__icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.rg-block h2 {
    margin-bottom: 12px;
}
.rg-block p {
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 24px;
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,.7);
    padding: 64px 0 0;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .logo {
    margin-bottom: 16px;
}
.footer__brand .logo-icon { color: var(--accent-2); }
.footer__brand .logo-name { color: #fff; }
.footer__brand p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.footer__tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer__tags span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.08);
    padding: 5px 12px;
    border-radius: 20px;
}
.footer__links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.footer__col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer__col ul li {
    margin-bottom: 10px;
}
.footer__col a {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer__bottom-links {
    display: flex;
    gap: 20px;
}
.footer__bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer__disclaimer {
    padding: 20px 0;
}
.footer__disclaimer p {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,.3);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0,0,0,.08);
    transform: translateY(100%);
    opacity: 0;
    transition: transform .5s ease, opacity .5s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner.hiding {
    transform: translateY(100%);
    opacity: 0;
}
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}
.cookie-banner__inner p {
    font-size: 14px;
    color: var(--text-muted);
}
.cookie-banner__inner a { text-decoration: underline; }
.cookie-banner__btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* === STACKED CARD SHOWCASE === */
.hero__showcase {
    margin-bottom: 36px;
    perspective: 900px;
}
.showcase-stack {
    position: relative;
    width: 260px;
    height: 160px;
    margin: 0 auto;
}
.showcase-card {
    position: absolute;
    width: 220px;
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-md);
    transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .5s cubic-bezier(.4,0,.2,1);
    backface-visibility: hidden;
}
.showcase-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}
.showcase-card__score {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
}
.showcase-card__badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-2);
    margin-top: 2px;
}

.showcase-card--back {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    left: 0;
    top: 0;
    transform: rotate(-6deg) translateZ(-30px) scale(.88);
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.showcase-card--back .showcase-card__name { color: rgba(255,255,255,.6); }
.showcase-card--back .showcase-card__score { color: rgba(255,255,255,.4); }

.showcase-card--mid {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    left: 20px;
    top: -4px;
    transform: rotate(-2deg) translateZ(-15px) scale(.94);
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.showcase-card--mid .showcase-card__name { color: rgba(255,255,255,.75); }
.showcase-card--mid .showcase-card__score { color: rgba(255,255,255,.6); }

.showcase-card--front {
    background: rgba(255,255,255,.15);
    border: 2px solid var(--accent);
    left: 40px;
    top: -8px;
    transform: rotate(2deg) translateZ(0);
    z-index: 3;
    box-shadow: 0 8px 32px rgba(8,145,178,.3), 0 2px 8px rgba(8,145,178,.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.showcase-card--front .showcase-card__name { color: #fff; }
.showcase-card--front .showcase-card__score { color: var(--accent); }

.showcase-stack:hover .showcase-card--back {
    transform: rotate(-10deg) translateX(-16px) translateZ(-30px) scale(.88);
}
.showcase-stack:hover .showcase-card--mid {
    transform: rotate(0deg) translateZ(-15px) scale(.94);
}
.showcase-stack:hover .showcase-card--front {
    transform: rotate(4deg) translateX(12px) translateY(-6px) translateZ(0);
    box-shadow: 0 14px 40px rgba(8,145,178,.22), 0 4px 12px rgba(8,145,178,.12);
}

/* === RATING BARS SECTION === */
.rating-bars-section {
    padding: 80px 0;
    background: var(--bg-alt);
}
.rating-bars {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.rating-bar-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.rating-bar-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.rating-bar-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.rating-bar-item__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
}
.rating-bar-item__score {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--accent);
}
.rating-bar-track {
    width: 100%;
    height: 10px;
    background: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.rating-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent) 0%, #06b6d4 60%, var(--accent-2) 100%);
    width: 0;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.rating-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
    animation: barShimmer 2s ease-in-out infinite;
}
@keyframes barShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.rating-bar-fill--animated.is-visible {
    width: var(--target-width);
}

/* === ZIGZAG FEATURE ROWS === */
.feature-zigzag {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
}
.feature-row--reverse {
    flex-direction: row-reverse;
}
.feature-row__visual {
    flex-shrink: 0;
}
.feature-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8,145,178,.1) 0%, rgba(8,145,178,.04) 100%);
    border: 2px solid rgba(8,145,178,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.feature-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(8,145,178,.2);
    animation: featureSpin 20s linear infinite;
}
@keyframes featureSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.feature-circle--alt {
    background: linear-gradient(135deg, rgba(234,88,12,.1) 0%, rgba(234,88,12,.04) 100%);
    border-color: rgba(234,88,12,.18);
}
.feature-circle--alt::before {
    border-color: rgba(234,88,12,.2);
}
.feature-row:hover .feature-circle {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(8,145,178,.15);
}
.feature-row:hover .feature-circle--alt {
    box-shadow: 0 8px 24px rgba(234,88,12,.15);
}
.feature-row__text {
    flex: 1;
}
.feature-row__text h3 {
    margin-bottom: 10px;
    font-size: 20px;
}
.feature-row__text p {
    font-size: 15px;
    line-height: 1.7;
}

/* === ANIMATED BACKGROUND BLOBS === */
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 15px) scale(.97); }
    75% { transform: translate(15px, 25px) scale(1.03); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 20px) scale(1.06); }
    66% { transform: translate(20px, -15px) scale(.95); }
}

.hero {
    position: relative;
}
.hero .container::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: blobFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero .container::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,88,12,.12) 0%, transparent 70%);
    filter: blur(40px);
    animation: blobFloat2 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero .container {
    position: relative;
}

.cta-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(234,88,12,.12);
    filter: blur(40px);
    animation: blobFloat 10s ease-in-out infinite;
    pointer-events: none;
}

/* === CARD HOVER LIFT WITH SHADOW TRAIL === */
.casino-card {
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.casino-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(8,145,178,.0), 0 8px 16px rgba(234,88,12,.0);
    transition: box-shadow .4s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    z-index: -1;
}
.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(8,145,178,.25);
}
.casino-card:hover::before {
    box-shadow: 0 20px 50px rgba(8,145,178,.1), 0 10px 20px rgba(234,88,12,.06);
}
.casino-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(8,145,178,.15), 0 8px 24px rgba(8,145,178,.1);
}

/* === PARALLAX BANNER === */
.parallax-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url('https://images.unsplash.com/photo-1604028297236-42130c7dcc3a?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.parallax-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,145,178,.78) 0%, rgba(15,25,35,.85) 100%);
    z-index: 1;
}
.parallax-banner .container {
    position: relative;
    z-index: 2;
}
.parallax-banner__content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.parallax-banner__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.parallax-banner__content p {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* === METHODOLOGY IMAGE + TEXT === */
.methodology-image-section {
    padding: 80px 0;
    background: var(--bg-body);
}
.methodology-image {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.methodology-image__pic {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(8,145,178,.15), 0 0 0 2px rgba(8,145,178,.15);
}
.methodology-image__pic::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 40px rgba(8,145,178,.12);
    pointer-events: none;
}
.methodology-image__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}
.methodology-image__text .section-label {
    margin-bottom: 12px;
}
.methodology-image__text h2 {
    margin-bottom: 16px;
}
.methodology-image__text > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.methodology-image__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.methodology-image__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}
.mi-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.methodology-image__highlight {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent) !important;
    border-left: 3px solid var(--accent-2);
    padding-left: 16px;
}

/* === SECTION BACKGROUND IMAGES (SUBTLE) === */
.rankings {
    position: relative;
}
.rankings::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542145272-597f274b38ab?w=1920&q=80') center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}
.rankings > .container {
    position: relative;
    z-index: 1;
}

.trust-section {
    position: relative;
}
.trust-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://plus.unsplash.com/premium_photo-1718826130532-9d1061a2bee6?w=1920&q=80') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}
.trust-section > .container {
    position: relative;
    z-index: 1;
}

/* ==================================
   RESPONSIVE
   ================================== */
@media (max-width: 1024px) {
    .casino-grid { grid-template-columns: 1fr; }
    .casino-card--featured { padding: 32px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .info-layout { grid-template-columns: 1fr; gap: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .feature-row { gap: 28px; }
    .feature-circle { width: 90px; height: 90px; font-size: 32px; }
    .methodology-image { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--bg-card);
        flex-direction: column;
        padding: 80px 24px 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-xl);
        z-index: 999;
        align-items: stretch;
    }
    .nav.open { transform: translateX(0);
        height: 100vh; }
    .nav a { padding: 14px 16px; font-size: 16px; border-radius: var(--radius-xs); }

    .hero { padding: 64px 0 56px; }
    .hero h1 { font-size: 1.8rem; }
    .hero__sub { font-size: 16px; }
    .hero__seal { width: 80px; height: 80px; }
    .seal__year { font-size: 22px; }

    .trust-grid { grid-template-columns: 1fr; }
    .casino-card--featured { padding: 24px; }
    .casino-card__ribbon { position: static; margin-bottom: 8px; display: inline-block; }

    .method-timeline::before { left: 19px; }
    .method-step__marker { width: 40px; height: 40px; font-size: 16px; }
    .method-step { gap: 16px; }

    .cta-banner__inner { padding: 36px 24px; }

    .age-strip__msg { display: none; }

    .footer__links-group { grid-template-columns: 1fr; gap: 24px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

    .cookie-banner__inner { flex-direction: column; text-align: center; }

    /* Showcase cards mobile */
    .showcase-stack { width: 220px; height: 140px; }
    .showcase-card { width: 180px; padding: 16px 18px; }
    .showcase-card__score { font-size: 22px; }
    .showcase-card__name { font-size: 13px; }
    .showcase-card--front { left: 30px; }
    .showcase-card--mid { left: 15px; }

    /* Zigzag feature rows mobile */
    .feature-row,
    .feature-row--reverse { flex-direction: column; text-align: center; gap: 20px; }
    .feature-circle { width: 80px; height: 80px; font-size: 28px; }
    .feature-circle::before { inset: -6px; }

    /* Rating bars mobile */
    .rating-bar-item { padding: 18px 20px; }
    .rating-bar-item__name { font-size: 15px; }
    .rating-bar-item__score { font-size: 16px; }

    /* Parallax mobile */
    .parallax-banner { background-attachment: scroll; height: 320px; }
    .parallax-banner__content h2 { font-size: 1.5rem; }
    .parallax-banner__content p { font-size: 16px; }

    /* Methodology image mobile */
    .methodology-image { grid-template-columns: 1fr; gap: 28px; }
    .methodology-image__pic { max-width: 100%; }
    .methodology-image__text { text-align: left; }
}

/* === 2a: ANIMATED TOP ACCENT BAR === */
.top-accent-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 10000;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent), var(--accent-2), var(--accent));
    background-size: 300% 100%;
    animation: accentBarSlide 4s linear infinite;
}
@keyframes accentBarSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* === 2b: HERO FLOATING CASINO ICONS === */
.hero-floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.float-icon {
    position: absolute;
    font-size: 42px;
    opacity: 0.08;
    color: #fff;
    animation: floatSuit 12s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(8,145,178,.4);
}
.float-icon--1 {
    top: 12%;
    left: 8%;
    font-size: 48px;
    animation-duration: 14s;
    animation-delay: 0s;
    color: rgba(8,145,178,.3);
}
.float-icon--2 {
    top: 25%;
    right: 10%;
    font-size: 36px;
    animation-duration: 11s;
    animation-delay: -2s;
    color: rgba(234,88,12,.25);
}
.float-icon--3 {
    bottom: 20%;
    left: 15%;
    font-size: 52px;
    animation-duration: 16s;
    animation-delay: -4s;
    color: rgba(8,145,178,.2);
}
.float-icon--4 {
    top: 40%;
    right: 18%;
    font-size: 40px;
    animation-duration: 13s;
    animation-delay: -6s;
    color: rgba(255,255,255,.06);
}
.float-icon--5 {
    bottom: 30%;
    right: 25%;
    font-size: 34px;
    animation-duration: 15s;
    animation-delay: -3s;
    color: rgba(234,88,12,.15);
}
.float-icon--6 {
    top: 60%;
    left: 5%;
    font-size: 44px;
    animation-duration: 17s;
    animation-delay: -8s;
    color: rgba(8,145,178,.15);
}
@keyframes floatSuit {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(15deg) scale(1.1);
    }
    50% {
        transform: translateY(10px) rotate(-10deg) scale(0.95);
    }
    75% {
        transform: translateY(-20px) rotate(8deg) scale(1.05);
    }
}

/* Hero pulsing cyan glow */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,.18) 0%, transparent 70%);
    animation: heroGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* === 2c: CASINO CARDS ENHANCEMENT === */

/* Glowing left border */
.casino-card {
    border-left: 3px solid transparent;
    background-clip: padding-box;
}
.casino-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), transparent);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity var(--transition);
}
.casino-card:hover::after {
    opacity: 1;
}

/* Enhanced hover: lift higher with cyan shadow trail */
.casino-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px rgba(8,145,178,.12),
        0 10px 25px rgba(8,145,178,.08),
        0 4px 10px rgba(0,0,0,.04);
    border-color: rgba(8,145,178,.3);
}

/*!* Shine sweep effect on hover *!*/
.casino-card {
    overflow: hidden;
}
.casino-card .casino-card__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8,145,178,.06), transparent);
    transition: none;
    z-index: 0;
}
.casino-card:hover .casino-card__header::before {
    animation: shineSweep 0.8s ease forwards;
}
@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* DESTAQUE pulsing badge */
.destaque-badge {
    position: absolute;
    top: 10px;
    left: 24px;
    background: var(--accent-2);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    z-index: 2;
    animation: destaquePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(234,88,12,.4);
}
@keyframes destaquePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(234,88,12,.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 24px rgba(234,88,12,.6), 0 0 0 6px rgba(234,88,12,.1);
        transform: scale(1.05);
    }
}

/* === 2d: LIVE STATS TICKER === */
.stats-ticker {
    background: var(--bg-dark);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid rgba(8,145,178,.3);
    border-bottom: 2px solid rgba(8,145,178,.3);
}
.stats-ticker::before,
.stats-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.stats-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark), transparent);
}
.stats-ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark), transparent);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}
.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.ticker-item {
    color: rgba(255,255,255,.9);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 24px;
    letter-spacing: 0.3px;
}
.ticker-divider {
    color: var(--accent);
    font-size: 10px;
    opacity: 0.5;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === 2e: RATING BARS ENHANCEMENT === */
.rating-bar-item__score {
    font-size: 22px !important;
    font-weight: 800 !important;
    position: relative;
}
.rating-bar-item__name {
    font-size: 19px !important;
    font-weight: 800 !important;
}
.rating-bar-item {
    position: relative;
    overflow: hidden;
}
.rating-bar-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,.08) 0%, transparent 70%);
    pointer-events: none;
    animation: statGlow 3s ease-in-out infinite;
}
@keyframes statGlow {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.3); }
}

/* === 2f: SECTION SEPARATORS === */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    height: 40px;
    background: transparent;
}
.section-separator::before,
.section-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 200px;
}
.section-separator::before {
    background: linear-gradient(90deg, transparent, var(--accent));
    margin-right: 16px;
}
.section-separator::after {
    background: linear-gradient(270deg, transparent, var(--accent));
    margin-left: 16px;
}
.separator-diamond {
    color: var(--accent);
    font-size: 14px;
    opacity: 0.6;
    animation: diamondPulse 3s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(8,145,178,.4);
}
@keyframes diamondPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); text-shadow: 0 0 16px rgba(8,145,178,.6); }
}

/* === 2g: ENHANCED CTA SECTION === */
.cta-banner__inner {
    border: 2px solid transparent;
    animation: ctaBorderPulse 3s ease-in-out infinite;
    position: relative;
}
@keyframes ctaBorderPulse {
    0%, 100% {
        border-color: rgba(8,145,178,.2);
        box-shadow: 0 0 0 0 rgba(8,145,178,0);
    }
    50% {
        border-color: rgba(8,145,178,.5);
        box-shadow: 0 0 30px rgba(8,145,178,.1);
    }
}

/* Floating sparkles around CTA button */
.cta-banner__inner .btn {
    position: relative;
    z-index: 1;
}
.cta-banner__inner .btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(8,145,178,.4), rgba(255,255,255,.2), rgba(234,88,12,.3));
    background-size: 200% 200%;
    animation: sparkleGlow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
}
.cta-banner__inner .btn:hover::before {
    opacity: 1;
}
@keyframes sparkleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced CTA gradient background */
.cta-banner__inner {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f2a35 50%, #1a1a2e 100%);
}

/* Sparkle particles */
.cta-banner__inner::before {
    background: radial-gradient(circle at 30% 50%, rgba(8,145,178,.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(234,88,12,.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(8,145,178,.1) 0%, transparent 50%);
    animation: sparkleFloat 6s ease-in-out infinite;
}
@keyframes sparkleFloat {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1) translateY(-10px); }
}

/* === RESPONSIVE FOR NEW ELEMENTS === */
@media (max-width: 768px) {
    .float-icon { font-size: 28px !important; }
    .hero-glow { width: 300px; height: 300px; }
    .stats-ticker { padding: 14px 0; }
    .ticker-item { font-size: 13px; padding: 0 16px; }
    .destaque-badge { font-size: 10px; padding: 4px 14px; top: -10px; left: 16px; }
    .section-separator::before,
    .section-separator::after { max-width: 100px; }
}

/* === SUBPAGE STYLES === */
.page-hero {
    padding: 48px 0;
    background: var(--bg-alt);
    text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { font-size: 17px; max-width: 600px; margin: 0 auto; }

.page-content {
    padding: 56px 0 80px;
}
.page-content .container { max-width: 800px; }
.page-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.page-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.page-content ul, .page-content ol { padding-left: 20px; margin-bottom: 16px; }
.page-content li { margin-bottom: 8px; font-size: 15px; color: var(--text-muted); line-height: 1.65; list-style: disc; }
.page-content ol li { list-style: decimal; }
.page-content a { text-decoration: underline; }