:root {
    --primary-blue: #1A3A5C;
    --secondary-blue: #0EA5E9;
    --vibrant-blue: #0077B6;
    --health-green: #00B894;
    --deep-bg: #0B1929;
    --text-white: #FFFFFF;
    --text-gray: #CBD5E1;
    --whatsapp-green: #25D366;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --highlight-color: #0EA5E9;
    --accent-color: #00B894;
    --main-gradient: linear-gradient(135deg, #1A3A5C 0%, #0EA5E9 100%);
    --reveal-duration: 0.8s;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--reveal-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all var(--reveal-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--reveal-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}


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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--deep-bg);
    background-image: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1) 0%, transparent 40%),
        radial-gradient(circle at center left, rgba(14, 165, 233, 0.05) 0%, transparent 30%);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
}

.text-de,
.text-volta {
    font-weight: 800;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.text-aos20 {
    display: inline;
    font-weight: 400;
    color: white;
    font-size: 0.6em;
    text-transform: lowercase;
}

.text-20-large {
    font-size: 1.8em;
    font-weight: 800;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.highlight-purple {
    color: var(--secondary-blue);
}

.highlight-pink {
    color: var(--accent-color);
}

.highlight-green {
    color: var(--health-green);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(0, 184, 148, 0.1) 0%, transparent 40%),
                #0B1929;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 1. TOP BAR*/
.top-bar {
    background: var(--deep-bg);
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: var(--secondary-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-dot-small {
    font-size: 6px;
    color: #4ade80;
    animation: pulse-simple 2s infinite;
}

@keyframes pulse-simple {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes breathe {

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

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* Removed old top-bar-text */

.cta-button {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.primary-cta {
    background: var(--vibrant-blue);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(14, 165, 233, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 18px 40px;
    color: white;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.primary-cta::after,
.cta-pill-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 4s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.7);
}

.primary-cta i {
    font-size: 1.6rem;
    color: #25D366;
    background: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.secondary-cta,
.final-cta {
    background: linear-gradient(90deg, #25D366 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    width: fit-content;
    margin-top: 20px;
}

.secondary-cta:hover,
.final-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

/* ===== HERO SECTION COMPACT - PREMIUM ===== */
.hero-section {
    padding: 140px 0 80px;
    min-height: auto;
    background: radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.1), transparent 50%);
}

.hero-container-compact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-side {
    flex: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.hero-headline .eyebrow {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.6;
}

.hero-cta-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-premium-cta {
    background: var(--vibrant-blue);
    color: white;
    padding: 22px 45px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 1px;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn-premium-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(30deg);
    animation: shimmer 4s infinite;
}

.btn-premium-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.5);
    background: var(--secondary-blue);
}

.vagas-info {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    margin-left: 10px;
}

.hero-image-side {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: scaleIn 1s ease-out;
    overflow: visible;
}

.golden-frame {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), transparent);
    border-radius: 40px;
}

.hero-gold-img {
    width: 100%;
    max-width: 420px;
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.05);
}

/* OCULTAR ELEMENTOS ANTIGOS */
.hero-container,
.hero-renato-image,
.hero-image-wrapper,
.hero-expert-visual,
.hero-expert-glow {
    display: none !important;
}


/* ===== MOBILE OVERRIDES - PREMIUM & COMPACT ===== */
@media (max-width: 900px) {
    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }

    .hero-content-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-headline {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin: 0 auto 25px;
        max-width: 320px;
    }

    .btn-premium-cta {
        width: 100%;
        padding: 18px;
        font-size: 0.95rem;
    }

    .hero-gold-img {
        max-width: 280px;
    }

    .vagas-info {
        margin: 8px 0 0 0;
        display: block;
        font-size: 0.65rem;
    }
}

/* ===== AUTHORITY COMPACT - PREMIUM ===== */
.authority-compact {
    padding: 80px 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.authority-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.authority-image {
    flex: 0.8;
}

.img-arms-crossed {
    width: 100%;
    max-width: 380px;
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.05);
}

.authority-text {
    flex: 1.2;
}

.title-sm {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.authority-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.auth-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.auth-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--secondary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .authority-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .auth-features {
        justify-content: center;
        gap: 15px;
    }
    .title-sm {
        font-size: 1.8rem;
    }
}

/* ===== VITRINE PREMIUM DE RESULTADOS ===== */
.results-premium {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.05), transparent 40%);
}

.section-title-premium {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid-premium {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.results-grid-premium::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.result-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    aspect-ratio: 9/16;
}

.result-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.result-item:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.result-item:hover img {
    transform: scale(1.1);
}

.result-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(14, 165, 233, 0.85);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
    .results-grid-premium {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    .result-item {
        flex: none;
        width: 100%;
    }
    .section-title-premium {
        font-size: 2.2rem;
    }
}


@media (min-width: 901px) {
    .mobile-sticky-footer {
        display: none;
    }
}

@media (max-width: 1024px) and (min-width: 901px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* ===== OTHER COMPONENTS ===== */
.cards-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.glass-card,
.testimonial-card,
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-card::before,
.testimonial-card::before,
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover,
.testimonial-card:hover,
.step-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.glass-card:hover::before,
.testimonial-card:hover::before,
.step-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--main-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.glass-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* TESTIMONIALS */
.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
    color: white;
}

.author {
    font-weight: 700;
    color: var(--secondary-pink);
    font-size: 0.9rem;
}

/* AUTHORITY */
.authority-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.authority-text {
    flex: 1;
}

.authority-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.authority-badge {
    width: 200px;
    height: 200px;
    background: var(--main-gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(10deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.badge-content {
    transform: rotate(-10deg);
    text-align: center;
    color: #0B1929;
}

.badge-content .number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
}

.badge-content .label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* METHOD */
.method-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.1;
    margin-bottom: -30px;
    color: white;
}

/* COMPARISON */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.column {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.column h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.check-column h3 i {
    color: #4ade80;
}

.x-column h3 i {
    color: #f87171;
}

.column ul {
    list-style: none;
}

.column ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.check-column ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 900;
}

.x-column ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: 900;
}

/* FOOTER */
.impact-phrase {
    font-size: 3rem;
    margin-bottom: 40px;
}

.footer-small {
    margin-top: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(14, 165, 233, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.mt-4 {
    margin-top: 2rem;
}

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


/* ===== OTHER COMPONENTS - REFINED ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    transition: all 0.4s ease;
    text-align: left;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--main-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 20px;
    color: white;
}

/* METHOD & STEPS */
.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 20px;
    right: 30px;
}

/* FINAL CALL & FOOTER */
.final-call {
    padding: 100px 0;
    background: var(--deep-bg);
}

.impact-phrase {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 70px;
    line-height: 1.2;
}

.legal-footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.btn-instagram-discrete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-instagram-discrete:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
}

.btn-instagram-discrete i {
    font-size: 1.2rem;
    color: #E1306C;
}

/* STICKY MOBILE */
.mobile-sticky-footer {
    display: none;
}

@media (max-width: 900px) {
    .mobile-sticky-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        background: transparent;
        z-index: 1000;
        pointer-events: none;
    }

    .sticky-btn {
        background: var(--vibrant-blue);
        color: white;
        text-align: center;
        padding: 18px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 800;
        display: block;
        box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
        border: 1px solid rgba(255,255,255,0.2);
        pointer-events: auto;
    }
}

.invite-text {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .invite-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}