/* ===========================
   ExpoFut 2026 — Landing Page
   =========================== */

@font-face {
    font-family: 'Liga Portugal';
    src: url('../fonts/LigaPortugal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Liga Portugal';
    src: url('../fonts/LigaPortugal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #1A1F5C;
    --navy-deep: #12164A;
    --green: #23C964;
    --blue-accent: #1F9BD8;
    --orange: #FF8C30;
    --red: #E8404A;
    --yellow: #FFD03A;
    --white: #ffffff;
    --off-white: #F5F7FA;
    --text-muted: #5A6074;
    --border: #E2E6EE;

    --gradient: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 20%, var(--green) 50%, var(--blue-accent) 80%, var(--navy) 100%);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

#wrapper {
    position: relative;
    float: none;
    width: 100%;
    margin: 0 auto;
    background-color: var(--cnvs-body-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

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

/* ===========================
   REVEAL (scroll micro-animations)
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Texto: entrada com blur subtil */
.reveal-text {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
    transition: opacity 1.15s var(--ease), transform 1.15s var(--ease), filter 1.15s var(--ease);
    will-change: opacity, transform, filter;
}

.reveal-text.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .reveal-text {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Liga Portugal', 'Source Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .55s var(--ease), box-shadow .55s var(--ease), background .55s var(--ease), color .55s var(--ease), letter-spacing .55s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '→';
    display: inline-block;
    transition: transform .6s var(--ease);
    margin-left: 2px;
    font-weight: 400;
}

.btn:hover::after {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--green);
    color: var(--navy);
    box-shadow: 0 10px 24px -10px rgba(35, 201, 100, 0.8);
}

.btn-primary:hover {
    background: #1fb359;
    transform: translateY(-3px);
    letter-spacing: 0.1em;
    box-shadow: 0 16px 32px -10px rgba(35, 201, 100, 0.9);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-deep);
    transform: translateY(-3px);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 120px 24px 120px;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/fundo_compressed.avif');
    background-size: cover;
    background-position: 50% 50%;
    animation: none;
    --parallax: 0px;
    --mouse-shift-x: 0px;
    --mouse-shift-y: 0px;
    transition: none;
}

@keyframes heroZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 105%;
    }
}

@keyframes noiceAnim {

    0%,
    to {
        transform: translate(0);
    }

    10% {
        transform: translate(-5%, -10%);
    }

    20% {
        transform: translate(-15%, 5%);
    }

    30% {
        transform: translate(7%, -25%);
    }

    40% {
        transform: translate(-5%, 25%);
    }

    50% {
        transform: translate(-15%, 10%);
    }

    60% {
        transform: translate(15%);
    }

    70% {
        transform: translateY(15%);
    }

    80% {
        transform: translate(3%, 35%);
    }

    90% {
        transform: translate(-10%, 10%);
    }
}


.noice-effect::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    opacity: 0.6;
    background-image: url('../assets/img/noise-paatern.png');
    background-repeat: repeat;
    background-size: auto;
    animation: noiceAnim 8s steps(10) infinite;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Ultra-subtle readability vignette only at extremes */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(18, 22, 74, 0.35) 100%),
        linear-gradient(180deg, rgba(18, 22, 74, 0.15) 0%, transparent 30%, transparent 70%, rgba(18, 22, 74, 0.25) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none;
    pointer-events: none;
    z-index: 1;
}

.bg {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200vh;
    background: transparent url('../img/noise-paatern.png') repeat 0 0;
    background-repeat: repeat;
    animation: bg-animation .2s infinite;
    opacity: .9;
    visibility: visible;
    pointer-events: none;
    z-index: 9999;
}

@keyframes bg-animation {
    0% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(-5%, -5%)
    }

    20% {
        transform: translate(-10%, 5%)
    }

    30% {
        transform: translate(5%, -10%)
    }

    40% {
        transform: translate(-5%, 15%)
    }

    50% {
        transform: translate(-10%, 5%)
    }

    60% {
        transform: translate(15%, 0)
    }

    70% {
        transform: translate(0, 10%)
    }

    80% {
        transform: translate(-15%, 0)
    }

    90% {
        transform: translate(10%, 5%)
    }

    100% {
        transform: translate(5%, 0)
    }
}


@keyframes heroBackdropFocus {
    from {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    to {
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
}

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

/* Floating color orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.orb-a {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    top: -120px;
    left: -140px;
    animation: none;
}

.orb-b {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--blue-accent) 0%, transparent 70%);
    bottom: -180px;
    right: -160px;
    animation: none;
}

@keyframes floatA {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 60px) scale(1.08);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, -40px) scale(1.1);
    }
}

.hero-inner {
    max-width: 980px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    --inner-shift-x: 0px;
    --inner-shift-y: 0px;
    transform: translate(var(--inner-shift-x), var(--inner-shift-y));
    transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.hero-logo {
    max-width: 800px;
    width: 100%;
    margin: 0;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    margin: 40px 0
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-tagline {
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-tagline span {
    background: linear-gradient(90deg, var(--green) 0%, var(--blue-accent) 50%, var(--orange) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: none;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-meta {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-meta strong {
    font-weight: 600;
}

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

.hero-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(10px);
    background: rgba(18, 22, 74, 0.35);
    backdrop-filter: blur(5px);
    text-align: center;
}

.hero-date-main,
.hero-date-rest {
    white-space: nowrap;
}

.hero-date-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-date-main::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(35, 201, 100, 0.7);
    }

    50% {
        opacity: .75;
        box-shadow: 0 0 0 10px rgba(35, 201, 100, 0);
    }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    z-index: 3;
    transition: border-color .3s var(--ease);
}

.scroll-hint span {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}

.scroll-hint:hover {
    border-color: var(--green);
}

@keyframes scrollDot {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, 14px);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
}

/* ===========================
   HIGHLIGHT PHRASE
   =========================== */
.highlight {
    background: var(--white);
    text-align: left;
    position: relative;
}

.highlight-inner {
    max-width: 880px;
    margin: 0 auto;
}

.kicker {
    display: inline-block;
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 0px;
}

.kicker::before {
    content: "●";
    display: inline-block;
    font-size: 1.35em;
    line-height: 1;
    margin-right: 0.45em;
}

@keyframes kickerSlide {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.highlight p {
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 2.2vw, 3rem);
    line-height: 1.45;
    color: var(--navy);
    letter-spacing: 0.005em;
}

.highlight p strong {
    font-weight: 500;
    background: linear-gradient(90deg, var(--green), var(--blue-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===========================
   AREAS SECTION
   =========================== */
.areas {
    background: var(--off-white);
}

.section-head {
    text-align: center;
    margin-bottom: 30px;
}

.section-head h2 {
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 4.8vw, 2.125rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head p {
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.areas-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.area-card {
    position: relative;
    padding: 30px 26px 28px;
    border-radius: 14px;
    transition: transform .75s var(--ease), box-shadow .75s var(--ease), border-color .75s var(--ease);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-origin: center bottom;
    isolation: isolate;
}

.area-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(10, 14, 40, 0.2) 0%, rgba(10, 14, 40, 0.85) 100%),
        var(--card-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transform-origin: center;
    transition: transform .75s var(--ease);
    z-index: 0;
    pointer-events: none;
}

.area-card>* {
    position: relative;
    z-index: 2;
}

/* Entrada dedicada para os cards quando aparecem no viewport */
.area-card.reveal {
    transform: translateY(32px) scale(0.96);
    filter: saturate(0.85) blur(2px);
}

.area-card.reveal.is-visible {
    animation: areaCardIn 1.35s var(--ease) both;
}

/* Stagger: entra 1 card de cada vez */
.areas .grid .area-card.reveal.is-visible:nth-child(1) {
    animation-delay: 0ms;
}

.areas .grid .area-card.reveal.is-visible:nth-child(2) {
    animation-delay: 180ms;
}

.areas .grid .area-card.reveal.is-visible:nth-child(3) {
    animation-delay: 360ms;
}

.areas .grid .area-card.reveal.is-visible:nth-child(4) {
    animation-delay: 540ms;
}

.areas .grid .area-card.reveal.is-visible:nth-child(5) {
    animation-delay: 720ms;
}

.areas .grid .area-card.reveal.is-visible:nth-child(6) {
    animation-delay: 900ms;
}

.areas .grid .area-card.reveal.is-visible:nth-child(7) {
    animation-delay: 1080ms;
}

.areas .grid .area-card.reveal.is-visible:nth-child(8) {
    animation-delay: 1260ms;
}

@keyframes areaCardIn {
    0% {
        opacity: 0;
        transform: translateY(32px) scale(0.96);
        filter: saturate(0.85) blur(2px);
    }

    60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
        filter: saturate(1.02) blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: saturate(1) blur(0);
    }
}

.area-card .area-num {
    margin-top: auto;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -20px rgba(8, 10, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.28);
}

.area-card:hover::before {
    transform: scale(1.06);
}

.area-card:hover::after {
    opacity: 1;
}

.area-card:hover .area-num {
    color: var(--green);
}

.area-card:hover h3 {
    transform: translateX(4px);
}

.area-card:hover .area-icon {
    background: var(--white);
    color: var(--navy);
    border-color: rgba(255, 255, 255, 0.45);
    transform: rotate(-3deg) scale(1.05);
    margin-bottom: 8px;
}

.area-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(2px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .75s var(--ease), color .75s var(--ease), border-color .75s var(--ease), transform .75s var(--ease), margin-bottom .75s var(--ease);
}

.area-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.area-num {
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--blue-accent);
    margin-bottom: 6px;
    letter-spacing: 0.12em;
    transition: color .6s var(--ease);
}

.area-card h3 {
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 2.4vw, 1.5rem);
    letter-spacing: 0.01em;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    text-align: center;
    transition: transform .6s var(--ease);
}

/* ===========================
   FORM SECTION
   =========================== */
.form-section {
    background: url('../img/fundo_compressed.avif') center/cover no-repeat;
    background-color: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(18, 22, 74, 0.25) 0%, rgba(18, 22, 74, 0.6) 100%);
    pointer-events: none;
}

.form-section>* {
    position: relative;
    z-index: 2;
}

.form-section .section-head h2 {
    color: var(--white);
}

.form-section .section-head p {
    color: rgba(255, 255, 255, 0.8);
}

.form-section .kicker {
    color: var(--green);
}

.form-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: 46px 44px;
    border-radius: 18px;
    color: var(--navy);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
    position: relative;
}

.field {
    margin-bottom: 22px;
}

.field label {
    display: block;
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    transition: color .2s var(--ease);
}

.field label .opt {
    font-weight: 400;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: none;
    margin-left: 6px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    background: var(--off-white);
    border: 1.5px solid transparent;
    border-radius: 10px;
    outline: none;
    transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue-accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(31, 155, 216, 0.12);
    transform: translateY(-1px);
}

.field:focus-within label {
    color: var(--blue-accent);
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A1F5C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-wrap .btn {
    width: 100%;
    padding: 16px 26px;
    font-size: 16px;
}

.form-note {
    margin-top: 14px;
    font-size: 13px;
    text-align: center;
    color: var(--text-muted);
}

/* ===========================
   FAQ
   =========================== */
.faq {
    background: var(--white);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--white);
    transition: border-color .6s var(--ease), box-shadow .6s var(--ease), transform .6s var(--ease);
}

.faq-item:hover {
    border-color: #CFD5E2;
    transform: translateX(2px);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-family: 'Liga Portugal', sans-serif;
    font-weight: 500;
    font-size: clamp(1.15rem, 2vw, 1.25rem);
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.01em;
    transition: color .5s var(--ease);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--blue-accent);
}

.faq-item summary::after {
    content: '+';
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--blue-accent);
    line-height: 1;
    transition: transform .75s var(--ease);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 26px 24px;
    line-height: 1.65;
    font-size: 1rem;
    animation: faqFade .9s var(--ease);
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-body a {
    color: var(--blue-accent);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    transition: color .2s var(--ease);
}

.faq-body a:hover {
    color: var(--green);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 24px 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    transition: transform .3s var(--ease);
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-info {
    text-align: right;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-info a {
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease);
}

.footer-info a:hover {
    border-bottom-color: var(--green);
}

.footer-bottom {
    max-width: var(--max);
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, #23C964 0%, #1F9BD8 50%, #FF8C30 100%);
    z-index: 999;
    pointer-events: none;
    transition: transform .42s var(--ease, cubic-bezier(0.16, 1, 0.3, 1));
}

.area-card {
    --rx: 0deg;
    --ry: 0deg;
    --lift: 0px;
    transform: translateY(var(--lift)) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    will-change: transform;
}

.area-card:hover {
    --lift: -8px;
}

.area-card .area-icon,
.area-card h3 {
    transform: translateZ(20px);
}

.btn {
    position: relative;
    isolation: isolate;
}

.btn-ripple {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 255, 255, 0.45);
    animation: btnRipple 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 0;
}

.form-success-title {
    font-family: 'Liga Portugal', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 1.5rem);
    font-weight: 500;
}

@keyframes btnRipple {
    to {
        transform: translate(-50%, -50%) scale(12);
        opacity: 0;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero,
    .hero::before,
    .noice-effect::before,
    .orb-a,
    .orb-b,
    .hero-tagline span,
    .hero-date-main::before,
    .scroll-hint span {
        animation: none !important;
    }

    .hero {
        transition: none;
        background-position: center center;
    }

    .hero-inner {
        transform: none;
        transition: none;
    }

    .orb-a {
        width: 320px;
        height: 320px;
    }

    .orb-b {
        width: 340px;
        height: 340px;
    }

    .hero-date-pill {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 10px 20px;
    }

    .form-wrap {
        padding: 32px 24px;
    }

    .form-success-title {
        font-size: 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .scroll-hint {
        display: none;
    }

    .bg {
        opacity: 0.5;
    }
}