/* ========================================
   RESET & BASE STYLES
======================================== */

/* Font-face para Agrandir (fonte local) */
@font-face {
    font-family: 'Agrandir';
    src: url('assets/fonts/Agrandir-ThinItalic.woff2') format('woff2'),
        url('assets/fonts/Agrandir-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('assets/fonts/Agrandir-Regular.woff2') format('woff2'),
        url('assets/fonts/Agrandir-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('assets/fonts/Agrandir-TextBold.woff2') format('woff2'),
        url('assets/fonts/Agrandir-TextBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('assets/fonts/Agrandir-GrandHeavy.woff2') format('woff2'),
        url('assets/fonts/Agrandir-GrandHeavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
html {
    scroll-behavior: smooth;
}

:root {
    --font-title: 'Agrandir', sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', sans-serif;

    /* Cores do site */
    --color-red-light: #9B2321;
    --color-red-dark: #680B05;
    --color-bg: #0d0f0e;
    --color-white: #F1F1F1;

    /* Cores legadas (para compatibilidade) */
    --color-primary: #9B2321;
    --color-black: #0d0f0e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   PLACEHOLDER IMAGES (temporário)
======================================== */
.placeholder-image {
    background-color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border: 2px dashed #888888;
}

.placeholder-image--logo {
    width: 150px;
    height: 40px;
}

/* Imagem real do logo do header */
.header__logo-img {
    height: 40px;
    width: auto;
}

.placeholder-image--hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Imagem real do background do hero */
.hero__background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}



/* Screen reader only - para manter H1 para SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visibility Helpers */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 993px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* ========================================
   HEADER
======================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 40px;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo {
    display: block;
    transition: opacity 0.3s ease;
}

.header__logo:hover {
    opacity: 0.8;
}

.header__nav {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .header__nav {
        position: static;
        transform: none;
    }
}

/* Main Navigation */
.header__menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.header__link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #f1f1f1;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.header__link:hover {
    opacity: 0.8;
}

/* Separator using pseudo-element */
.header__menu li:not(:last-child) .header__link::after {
    content: '|';
    margin-left: 20px;
    opacity: 0.5;
    font-weight: 400;
}

/* Mobile Toggle Button (Hamburger) */
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #f1f1f1;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animating Hamburger to X */
.header__mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header__mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    /* .header__nav reset not needed if no properties */

    .header__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background-color: rgba(13, 15, 14, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        z-index: 101;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        border-bottom: 2px solid #dc3545;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .header__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__menu li {
        width: 100%;
        text-align: center;
    }

    .header__link {
        font-size: 1rem;
        padding: 15px 0;
        width: 100%;
        justify-content: center;
    }


    .header__menu li:not(:last-child) .header__link::after {
        content: none;
        /* Remove separator on mobile */
    }

    .header__mobile-toggle {
        display: flex;
        position: relative;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(196, 30, 58, 0.85) 0%,
            rgba(150, 20, 40, 0.9) 30%,
            rgba(80, 10, 20, 0.95) 60%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero__main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.hero__logo-missao {
    max-width: 450px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Dramatic Entrance with Dark to Light Transition */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
        filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0)) brightness(0.3) contrast(1.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.08) translateY(-8px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.4)) brightness(1.1);
    }
}

/* Golden light sweep effect */
@keyframes goldenSweep {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

/* Breathing Glow - Pulsating Energy Effect */
@keyframes breathingGlow {

    0%,
    100% {
        filter:
            drop-shadow(0 0 25px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 45px rgba(255, 215, 0, 0.2)) brightness(1.1);
    }

    50% {
        filter:
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 70px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 100px rgba(255, 215, 0, 0.2)) brightness(1.25);
    }
}

/* Electric Shimmer - Flowing Current */
@keyframes electricShimmer {
    0% {
        transform: translateX(-100%) translateY(-50%) rotate(-5deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(200%) translateY(50%) rotate(-5deg);
        opacity: 0;
    }
}

/* Old subtleGlow removed - replaced by breathingGlow */
@keyframes subtleGlowOld {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.5));
    }
}

/* Particle canvas for golden glitters */
.hero__particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
}

.hero__subtitle {
    margin-bottom: 50px;
    text-align: inherit;
}

.hero__event {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.hero__locations {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 4px;
    opacity: 0.9;
}

.hero__cta {
    display: inline-block;
    font-family: var(--font-title);
    background: linear-gradient(to bottom, #dc3545, #a71d2a);
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 2px;
    padding: 20px 60px;
    border-radius: 50px;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.hero__cta:active {
    transform: translateY(-1px);
}

/* ========================================
   STATS SECTION
======================================== */
.stats {
    background-color: #0d0f0e;
    padding: 0 20px;
}

.stats__container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 320px;
}

/* Placeholder para ícone circular */
.placeholder-image--icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: -25px;
    z-index: 2;
    position: relative;
}

/* Ícone Stats (imagem real) */
.stats__icon {
    width: 140px;
    height: 140px;
    margin-bottom: -30px;
    z-index: 2;
    position: relative;
    object-fit: contain;
}

/* Card body com fundo vermelho escuro */
.stats__card-body {
    width: 100%;
    flex: 1;
    min-height: 100px;
    background-color: #4a1515;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 40px 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__card-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Contact Form Restoration (Gauge inspired) */
.contact-form {
    padding: 0 20px;
    background: #0d0f0e;
    position: relative;
    color: #fff;
    min-height: 700px;
}

.contact-form__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-form__header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 100;
    font-style: italic;
    color: #fff;
    margin-bottom: 15px;
}

.contact-form__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    width: 100%;
    min-height: 555px;
}

/* Typeform embed container */
.contact-form__row>div[data-tf-live] {
    width: 100%;
    min-height: 555px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-form__info {
    flex: 1;
    min-width: 300px;
}

.contact-form__title-big {
    font-family: var(--font-title);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 900;
    text-transform: lowercase;
    margin: 0;
}

.contact-form__form-wrapper {
    flex: 1.2;
    min-width: 320px;
}

.contact-form__required {
    font-size: 0.8rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form__title-big {
        text-align: center;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label span {
    color: #fff;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #000;
    transition: box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.contact-form__submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #222;
}

/* Placeholder para foto do evento */
.placeholder-image--about-photo {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

/* Placeholder para ícones pequenos */
.placeholder-image--icon-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 7px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    background-color: #0d0f0e;
    padding: 0 20px;
}

.about__container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about__image-wrapper {
    flex: 0 0 40%;
    max-width: 450px;
}

.about__content {
    flex: 1;
}

.about__title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 100;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.about__title--highlight {
    color: #dc3545;
}

.about__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
}

.about__stats-card {
    background: linear-gradient(135deg, #5c1a1a, #3d1111);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
}

.about__stat {
    font-family: var(--font-title);
    font-size: 0.60rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.about__stat:last-child {
    margin-bottom: 0
}

.about__info-list {
    margin-bottom: 30px;
}

.about__info-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    text-align: right;
}

.about__info-item:last-child {
    margin-bottom: 0;
}

.about__info-text {
    flex: 1;
}

.about__info-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.about__info-detail {
    font-size: 0.75rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about__cta {
    display: inline-block;
    font-family: var(--font-title);
    background: linear-gradient(to bottom, #dc3545, #a71d2a);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 16px 50px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.about__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Imagens reais da seção About */
.about__photo {
    width: 100%;
    max-width: 350px;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
}

.about__info-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    object-fit: contain;
}

/* ========================================
   JORNADA SECTION
======================================== */
.jornada {
    background: #0d0f0e;
    padding: 0 20px;
}

.jornada__container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.jornada__content {
    flex: 1;
    max-width: 550px;
}

.jornada__title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 100;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.jornada__title--highlight {
    color: #c9a227;
}

.jornada__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
}

.jornada__date {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 25px;
}

.jornada__cta {
    display: inline-block;
    font-family: var(--font-title);
    background: linear-gradient(to bottom, #dc3545, #a71d2a);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.jornada__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.jornada__video-wrapper {
    flex: 0 0 auto;
    width: 400px;
    max-width: 100%;
}

.jornada__video {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    background-color: #1a1a1a;
    object-fit: cover;
}

/* ========================================
   MISSION OBJECTIVE SECTION
======================================== */
.mission-objective {
    padding: 0 20px;
    text-align: center;
}

.mission-objective__title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 100;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 40px;
}

.mission-objective__cards {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-red-dark) 100%);
    border-radius: 20px;
    padding: 40px 20px;
}

.mission-objective__card {
    flex: 1;
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-objective__card:last-child {
    border-right: none;
}

/* Placeholder para ícones da missão */
.placeholder-image--mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 8px;
    background-color: #555;
    border: 2px dashed #888;
}

.mission-objective__card-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.mission-objective__card-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.mission-objective__cta {
    display: inline-block;
    font-family: var(--font-title);
    background: linear-gradient(to bottom, var(--color-red-light), var(--color-red-dark));
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.mission-objective__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Ícones Mission (imagem real) */
.mission-objective__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    /* Centralizado e com margem inferior */
    object-fit: contain;
    display: block;
    /* Garante que o margin auto funcione */
}

/* ========================================
   SPEAKERS SECTION
======================================== */
.speakers {
    padding: 0 0;
    text-align: center;
    overflow: hidden;
}

.speakers__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 100;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 60px;
    line-height: 1.3;
    padding: 0 20px;
}

.speakers__title--highlight {
    color: var(--color-white);
}

.speakers__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    align-items: stretch;
}

.speakers__card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    width: 45%;
}

/* Primeiro card: cola na esquerda */
.speakers__card:nth-child(odd) {
    align-items: flex-start;
}

.speakers__card:nth-child(odd) .speakers__card-bg {
    border-radius: 0 20px 20px 0;
}

.speakers__card:nth-child(odd) .placeholder-image--speaker {
    left: 50%;
    transform: translateX(-50%);
}

/* Segundo card: cola na direita */
.speakers__card:nth-child(even) {
    align-items: flex-end;
}

.speakers__card:nth-child(even) .speakers__card-bg {
    border-radius: 20px 0 0 20px;
}

.speakers__card:nth-child(even) .placeholder-image--speaker {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.speakers__card-bg {
    background: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-red-dark) 100%);
    padding: 140px 40px 40px;
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Placeholder para foto do palestrante - escapa 50% acima */
.placeholder-image--speaker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 220px;
    border-radius: 12px;
    z-index: 2;
}

.speakers__card-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--color-white);
    padding-bottom: 15px;
}

.speakers__card-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.speakers__card-bio {
    text-align: center;
}

.speakers__card-preview,
.speakers__card-full p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 15px;
    text-align: center;
}

.speakers__card-full {
    margin-top: 15px;
}

.speakers__card-toggle {
    display: inline-block;
    font-family: var(--font-title);
    background: linear-gradient(to bottom, var(--color-red-light), var(--color-red-dark));
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 15px;
}

.speakers__card-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Foto Speakers (imagem real) */
.speakers__photo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 220px;
    border-radius: 12px;
    z-index: 2;
    object-fit: cover;
}


/* ========================================
   PHASES SECTION
======================================== */
.phases {
    padding: 0 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.phases__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 100;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.phases__intro {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.phases__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.phases__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.phases__image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 5px solid #d4af37; */
    /* Removed golden border */
    position: relative;
    z-index: 2;
    margin-bottom: -40px;
}

.phases__content {
    background: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-red-dark) 100%);
    padding: 60px 40px 40px;
    border-radius: 20px;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.phases__phase-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.phases__date {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.phases__description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-white);
    line-height: 1.6;
}

@media (min-width: 993px) {
    .phases__container {
        gap: 40px;
    }

    .phases__item {
        flex-direction: row;
        max-width: 1100px;
        align-items: center;
    }

    .phases__item--right {
        flex-direction: row-reverse;
    }

    .phases__image {
        width: 300px;
        height: 300px;
        margin-bottom: 0;
        margin-right: -60px;
        flex-shrink: 0;
    }

    .phases__item--right .phases__image {
        margin-right: 0;
        margin-left: -60px;
    }

    .phases__content {
        padding: 40px 40px 40px 90px;
        text-align: left;
    }

    .phases__item--right .phases__content {
        padding: 40px 90px 40px 40px;
        text-align: right;
    }
}

/* ========================================
   TEAM STARVISION SECTION
======================================== */
.team-starvision {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Imagem de fundo real */
    background-image: url('assets/images/team/team-background.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.team-starvision__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.team-starvision__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

/* Placeholder para logo do time */
.placeholder-image--team-logo {
    width: 300px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 10px;
}

/* Logo Team (imagem real) */
.team-starvision__logo {
    width: 300px;
    max-height: 150px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.team-starvision__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 100;
    font-style: italic;
    color: #D4A853;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: 0 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 100;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.services__intro {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 50px;
}

.services__container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services__item {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    margin-top: -15px;
}

.services__item:first-child {
    margin-top: 0;
}

.services__arrow {
    position: relative;
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    z-index: 2;
}

.services__arrow-svg {
    width: 100%;
    height: 100%;
}

/* Placeholder para ícone do serviço */
.placeholder-image--service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 7px;
}

/* Ícone Services (imagem real) */
.services__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    /* Reduzido para 40px para melhor proporção */
    height: 40px;
    /* Reduzido para 40px para melhor proporção */
    object-fit: contain;
}

.services__content {
    background-color: #2a2a2a;
    padding: 20px 25px 20px 40px;
    border-radius: 0 15px 15px 0;
    text-align: left;
    flex: 1;
    margin-left: -20px;
    z-index: 1;
}

.services__item-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.services__item-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.services__cta {
    display: inline-block;
    font-family: var(--font-title);
    background: linear-gradient(to bottom, var(--color-red-light), var(--color-red-dark));
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 50px;
}

.services__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ========================================
   INCLUSO NA MISSÃO SECTION
======================================== */
/* ========================================
   INCLUSO NA MISSÃO SECTION
======================================== */
.incluso {
    padding: 0 20px;
    text-align: center;
    background-color: var(--color-bg);
}

.incluso__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 100;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 40px;
    line-height: 1.3;
    text-transform: none;
}

.incluso__container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Card Incluso (HTML real) */
.incluso__card {
    flex: 1;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.incluso__card-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-red-light);
}

.incluso__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.incluso__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.incluso__icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-red-light);
    border-radius: 50%;
    color: var(--color-red-light);
    font-size: 22px;
    background-color: transparent;
}

.incluso__item-content {
    flex: 1;
}

.incluso__item-title {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.incluso__item-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: #444444;
    line-height: 1.5;
    margin: 0;
}

.incluso__cta {
    display: inline-block;
    font-family: var(--font-title);
    background: linear-gradient(to bottom, var(--color-red-light), var(--color-red-dark));
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 50px;
}

.incluso__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ========================================
   SOCIAL MEDIA SECTION
======================================== */
.social {
    padding: 0 20px;
    text-align: center;
    background-color: var(--color-bg);
}

.social__title {
    font-family: var(--font-title);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 100;
    font-style: italic;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.social__container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-red-dark) 100%);
    color: #000000;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 35, 33, 0.5);
}

/* ========================================
   GLOBAL SECTION SPACING (DESKTOP ONLY)
======================================== */
@media (min-width: 993px) {

    /* Desktop Logo Size - Increased by 30px */
    .hero__logo-missao {
        max-width: 480px;
    }

    /* Margin-top para cada section específica */
    .stats {
        margin-top: 110px;
    }

    .about {
        margin-top: 110px;
    }

    .jornada {
        margin-top: 110px;
    }

    .mission-objective {
        margin-top: 110px;
    }

    .speakers {
        margin-top: 110px;
    }

    .phases {
        margin-top: 110px;
    }

    .team-starvision {
        margin-top: 110px;
    }

    .services {
        margin-top: 55px;
        /* Reduzido pela metade */
    }

    .incluso {
        margin-top: 110px;
    }

    .contact-form {
        margin-top: 110px;
    }

    .social {
        margin-top: 55px;
        /* Reduzido pela metade */
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .placeholder-image--logo {
        width: 120px;
        height: 35px;
    }

    .hero__main {
        flex-direction: column;
        gap: 20px;
    }

    .placeholder-image--logo-missao {
        width: 90%;
        max-width: 400px;
        height: 300px;
    }

    .hero__cta {
        padding: 16px 40px;
    }

    .hero__locations {
        letter-spacing: 2px;
    }

    /* Stats Mobile */
    .stats__container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .stats__card {
        width: 100%;
        max-width: 280px;
    }

    .placeholder-image--icon-circle {
        width: 70px;
        height: 70px;
    }

    /* About Mobile */
    .about {
        padding: 50px 20px;
    }

    .about__container {
        flex-direction: column;
        gap: 30px;
    }

    .about__image-wrapper {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .placeholder-image--about-photo {
        height: 250px;
    }

    .about__content {
        text-align: center;
    }

    .about__title {
        font-size: 1.6rem;
    }

    .about__info-item {
        justify-content: center;
        text-align: center;
    }

    .about__info-text {
        flex: none;
    }

    /* Jornada Mobile */
    .jornada {
        padding: 50px 20px;
    }

    .jornada__container {
        flex-direction: column;
        gap: 40px;
    }

    .jornada__content {
        max-width: 100%;
        text-align: center;
    }

    .jornada__video-wrapper {
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    .jornada__content {
        order: 0;
    }

    /* Included/Services Section Styles */
    /* Included in Mission Section Styles (HTML Cards) */
    .incluso {
        padding: 0 0;
        background-color: #0d0f0e;
        text-align: center;
    }

    .incluso__title {
        font-family: var(--font-title);
        font-size: 2rem;
        color: #fff;
        margin-bottom: 40px;
        text-transform: none;
        /* Removido uppercase */
        font-weight: 100;
        /* Thin */
        font-style: italic;
        /* Italic */
        line-height: 1.1;
    }

    .incluso__container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .incluso__card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 25px;
        padding: 25px 20px;
    }

    .incluso__card-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .incluso__list {
        gap: 18px;
    }

    .incluso__icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .incluso__item-title {
        font-size: 0.9rem;
    }

    .incluso__item-text {
        font-size: 0.8rem;
    }

    /* Global CTA Style for Sections */
    .phases__cta,
    .incluso__cta {
        display: inline-block;
        font-family: var(--font-title);
        background: linear-gradient(to bottom, var(--color-red-light), var(--color-red-dark));
        color: var(--color-white);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 18px 50px;
        border-radius: 50px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
        text-transform: uppercase;
        margin-top: 50px;
        text-decoration: none;
    }

    .phases__cta:hover,
    .incluso__cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        color: #fff;
    }

    /* Cleaned up responsive behaviors handled in main sections or specific queries above */

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-label {
        font-family: var(--font-title);
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
    }

    .form-input {
        padding: 15px;
        font-size: 1rem;
        border: none;
        border-radius: 0;
    }

    /* Mission Objective Mobile */
    .mission-objective__title {
        font-size: 2rem;
    }

    .mission-objective__cards {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .mission-objective__card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }

    .mission-objective__card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Speakers Mobile */
    .speakers__container {
        flex-direction: column;
        gap: 80px;
    }

    .speakers__card:nth-child(odd),
    .speakers__card:nth-child(even) {
        width: 100%;
    }

    .speakers__card:nth-child(odd) .speakers__card-bg,
    .speakers__card:nth-child(even) .speakers__card-bg {
        margin-left: 0;
        margin-right: 0;
        border-radius: 20px;
        margin: 0 20px;
    }

    .speakers__card-bg {
        padding: 120px 25px 30px;
    }

    .placeholder-image--speaker {
        width: 140px;
        height: 180px;
    }

    .placeholder-image--service-icon {
        width: 40px;
        height: 40px;
    }

    .services__content {
        padding: 15px 20px 15px 35px;
    }

    .services__item-title {
        font-size: 0.9rem;
    }

    .services__item-description {
        font-size: 0.75rem;
    }

    .services__cta {
        font-size: 0.9rem;
        padding: 15px 35px;
    }

    /* Incluso na Missão Mobile */
    .incluso__container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .placeholder-image--incluso-card {
        max-width: 100%;
        width: 100%;
        min-height: 400px;
    }

}

@media (max-width: 480px) {
    .placeholder-image--logo-missao {
        width: 95%;
        max-width: 300px;
        height: 220px;
    }

    .hero__cta {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .header__lang {
        font-size: 12px;
    }
}

/* Mobile adjustments for About Section - FORCE CHECK */
@media (max-width: 768px) {
    .about__container {
        padding: 0 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .about__info-list {
        width: 100% !important;
        max-width: 100% !important;
    }

    .about__info-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .about__info-text {
        min-width: 0 !important;
        flex: 1 1 auto !important;
        width: auto !important;
        margin-right: 0 !important;
    }

    .about__info-detail {
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        /* Handle long strings without spaces just in case */
        white-space: normal !important;
        max-width: 100% !important;
    }

    .about__info-icon {
        flex-shrink: 0 !important;
        width: 90px !important;
        /* Aumentado 2x conforme solicitado */
        height: 90px !important;
        margin-bottom: 25px !important;
    }
}

@media (max-width: 768px) {

    /* Margin Top específico para botões e seções mobile */
    .hero__cta {
        margin-top: 50px;
        padding: 20px 50px;
        /* Aumentando botão */
        font-size: 1.1rem;
    }

    .services {
        margin-top: 33px;
        /* Ajuste específico solicitado */
    }

    .phases {
        margin-top: 90px;
    }

    .speakers {
        margin-top: 90px;
    }

    .mission-objective__cta {
        margin-top: 50px;
        display: block;
        /* Garante que margin funcione */
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        padding: 20px 50px;
        /* Aumentando botão */
        font-size: 1.1rem;
    }

    /* Aumentando outros botões principais */
    .services__cta,
    .phases__cta,
    .incluso__cta {
        padding: 20px 50px;
        font-size: 1.1rem;
    }

    /* Incluso Styling Mobile */
    .incluso__title {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 40px;
        text-transform: none;
        /* Removido uppercase */
        font-weight: 100;
        /* Thin */
        font-style: italic;
        /* Italic */
        font-family: var(--font-title);
        /* Garantir fonte */
    }

    .incluso__title::after {
        content: '';
        display: block;
        width: 60px;
        /* Bem curta */
        height: 6px;
        /* Linha grossa */
        background-color: var(--color-red-light);
        margin: 15px auto 0;
        border-radius: 3px;
    }

    .incluso__item-title,
    .incluso__item-text {
        font-family: 'Agrandir', sans-serif;
        /* Fonte Agrandir */
    }

    .incluso__item-title {
        font-weight: 700;
        font-size: 1.1rem;
        /* Ajuste leve para legibilidade */
    }

    /* Aumentando botões 'do top' (Menu e Scroll Top) */
    .top-up {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
    }

    .header__mobile-toggle {
        width: 40px;
        height: 28px;
    }

    .hamburger-line {
        height: 4px;
        border-radius: 4px;
    }
}


/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

/* WhatsApp Button styling */
.whats-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #8D2424;
    color: #f1f1f1;
    border-radius: 50%;
    font-size: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whats-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(141, 36, 36, 0.4);
}

.whats-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #fff;
    color: #8D2424;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top Up Button styling */
.top-up {
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #f1f1f1;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    /* Hidden by default, shown via JS */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.top-up.visible {
    display: flex;
}

.top-up:hover {
    background-color: #555;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .whats-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
======================================== */
/* Estado inicial: invisível e deslocado para cima */
.scroll-reveal {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Estado revelado: visível e na posição correta */
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delays escalonados para elementos filhos */
.scroll-reveal-delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal-delay-4 {
    transition-delay: 0.4s;
}

.scroll-reveal-delay-5 {
    transition-delay: 0.5s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   STARVISION FORM STYLES (EmailJS)
======================================== */
.starvision-form-wrapper {
    background: linear-gradient(135deg, #A71D2A 0%, #8B1722 100%);
    border-radius: 12px;
    padding: 60px 80px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(167, 29, 42, 0.25);
    border: 1px solid rgba(255, 199, 44, 0.1);
    box-sizing: border-box;
}

.starvision-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    display: block;
}

.label-text {
    font-size: 16px;
    font-weight: 400;
    color: #F1F1F1;
    display: block;
    line-height: 1.4;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #0E000A;
    background: #F1F1F1;
    border: 2px solid transparent;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #CCCCCC;
    opacity: 0.7;
}

.form-input:focus {
    border-color: #FFC72C;
    box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.2);
    transform: translateY(-1px);
}

.form-input:hover:not(:focus) {
    border-color: rgba(255, 199, 44, 0.3);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

/* Submit Button */
.form-submit-btn {
    width: 50%;
    max-width: 300px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #0E000A;
    background: #FFC72C;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    background: #CCCCCC;
    color: #EAEAEA;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    display: inline-block;
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 8px;
}

.form-submit-btn.loading .btn-text {
    display: none;
}

.form-submit-btn.loading .btn-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner Animation */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #CCCCCC;
    border-top-color: #A71D2A;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
    width: 50%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-message svg {
    display: none;
}

.success-message {
    background: rgba(81, 207, 102, 0.15);
    border: 1px solid rgba(81, 207, 102, 0.3);
    color: #51cf66;
}

.error-message {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.form-message.show {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Form */
@media (max-width: 768px) {
    .starvision-form-wrapper {
        padding: 30px 24px;
        border-radius: 8px;
    }

    .starvision-form {
        gap: 20px;
    }

    .label-text {
        font-size: 15px;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .starvision-form-wrapper {
        padding: 24px 20px;
    }

    .starvision-form {
        gap: 18px;
    }
}