/* ============================================
   CORRETOR DO FUTURO - LANDING PAGE
   Design System & Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --green-primary: #02f8d3;
    --green-secondary: #00ec81;
    --green-gradient: linear-gradient(135deg, #02f8d3 0%, #00ec81 100%);
    --black-primary: #020707;
    --black-secondary: #000000;
    --white: #fffdfc;

    /* Typography */
    --font-family: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(2, 248, 211, 0.1);
    --shadow-md: 0 4px 20px rgba(2, 248, 211, 0.15);
    --shadow-lg: 0 10px 40px rgba(2, 248, 211, 0.2);
    --shadow-glow: 0 0 30px rgba(2, 248, 211, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--black-secondary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

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

.highlight {
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(2, 248, 211, 0.1);
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-gradient);
    transition: var(--transition-medium);
}

.nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-medium);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-medium);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-mobile {
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 15px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 45%;
    opacity: 0.05;
    animation: wave 20s linear infinite;
}

.wave1 {
    top: -50%;
    left: -50%;
    background: linear-gradient(45deg, var(--green-primary), transparent);
    animation-duration: 25s;
}

.wave2 {
    top: -60%;
    left: -40%;
    background: linear-gradient(45deg, var(--green-secondary), transparent);
    animation-duration: 30s;
    animation-delay: -5s;
}

.wave3 {
    top: -40%;
    right: -50%;
    background: linear-gradient(45deg, var(--green-primary), transparent);
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes wave {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 248, 211, 0.1);
    border: 1px solid rgba(2, 248, 211, 0.3);
    padding: 10px 25px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--green-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .line1 {
    display: block;
    color: var(--white);
    letter-spacing: 0.1em;
}

.hero-title .line2 {
    display: block;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(2, 248, 211, 0.1);
    border: 2px solid var(--green-primary);
    padding: 15px 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.date-icon {
    font-size: 2rem;
}

.date-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.3rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 18px 40px;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-medium);
    animation: fadeInUp 0.8s ease 0.7s backwards;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-hero svg {
    transition: var(--transition-medium);
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

.hero-sponsors {
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-sponsors span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sponsor {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--green-primary);
    border-bottom: 2px solid var(--green-primary);
    transform: rotate(45deg);
}

@keyframes bounce {

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

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

/* ============================================
   SECTION HEADER (Common)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 248, 211, 0.1);
    border: 1px solid rgba(2, 248, 211, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green-primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SPEAKERS SECTION
   ============================================ */
.speakers {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black-secondary) 0%, var(--black-primary) 100%);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-medium);
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: rgba(2, 248, 211, 0.3);
    box-shadow: var(--shadow-lg);
}

.speaker-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-slow);
}

.speaker-card:hover .speaker-image {
    transform: scale(1.05);
}

.speaker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.speaker-specialty {
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.speaker-info {
    padding: 25px;
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-role {
    color: var(--green-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.speaker-divider {
    width: 40px;
    height: 3px;
    background: var(--green-gradient);
    margin: 15px 0;
    border-radius: 3px;
}

.speaker-topic {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.topic-label {
    display: block;
    color: var(--green-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: var(--section-padding);
    background: var(--black-primary);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(2, 248, 211, 0.2);
}

.location-img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.location-main-image:hover .location-img {
    transform: scale(1.03);
}

.location-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid rgba(2, 248, 211, 0.1);
    transition: var(--transition-medium);
}

.gallery-img:hover {
    transform: scale(1.05);
    border-color: var(--green-primary);
}

.location-info {
    padding-left: 20px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 248, 211, 0.1);
    border: 1px solid rgba(2, 248, 211, 0.3);
    padding: 12px 25px;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.location-icon {
    font-size: 1.3rem;
}

.location-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.location-features {
    list-style: none;
    margin-bottom: 30px;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--green-gradient);
    color: var(--black-primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-location {
    display: inline-block;
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 15px 35px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-medium);
}

.btn-location:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black-primary) 0%, var(--black-secondary) 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
}

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

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    margin-bottom: 20px;
}

.partner-logo {
    max-width: 200px;
    max-height: 120px;
    object-fit: contain;
}

.partner-name {
    color: var(--black-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.partner-creci {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
}

.partners-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.btn-partner {
    display: inline-block;
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition-medium);
}

.btn-partner:hover {
    background: var(--green-gradient);
    color: var(--black-primary);
    border-color: transparent;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(2, 248, 211, 0.1) 0%, rgba(0, 236, 129, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 248, 211, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-final::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 236, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-medium);
}

.btn-cta:hover {
    background: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 50px 0;
    background: var(--black-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-sponsors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-sponsors .sponsor {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-medium);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

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

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--white);
    color: var(--black-primary);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-info {
        padding-left: 0;
        text-align: center;
    }

    .location-features li {
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-date {
        padding: 15px 25px;
    }

    .date-day {
        font-size: 2rem;
    }

    .speakers-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .location-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 180px;
    }

    .footer-sponsors {
        flex-direction: column;
        gap: 10px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .location-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .btn-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* ============================================
   HERO SUBTITLE STRONG (presencial)
   ============================================ */
.hero-subtitle strong {
    color: var(--green-primary);
    font-weight: 700;
}

/* ============================================
   HERO DATE SVG ICON
   ============================================ */
.date-icon-svg {
    flex-shrink: 0;
}

/* ============================================
   HERO COUPON
   ============================================ */
.hero-coupon {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(2, 248, 211, 0.15) 0%, rgba(0, 236, 129, 0.1) 100%);
    border: 2px dashed var(--green-primary);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.55s backwards, couponGlow 2s ease-in-out infinite;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes couponGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(2, 248, 211, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(2, 248, 211, 0.4);
    }
}

.hero-coupon-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-coupon-code {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.hero-coupon-discount {
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

@media (max-width: 480px) {
    .hero-coupon {
        padding: 12px 20px;
        gap: 10px;
    }

    .hero-coupon-code {
        font-size: 1.3rem;
    }

    .hero-coupon-label {
        font-size: 0.85rem;
    }
}

/* ============================================
   PARTNER CARDS SIMPLE (apenas logos)
   ============================================ */
.partner-card-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 180px;
}

.partner-logo-full {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================================
   POPUP DE DESCONTO
   ============================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: linear-gradient(145deg, #0a0f0f 0%, #020707 100%);
    border: 2px solid var(--green-primary);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(2, 248, 211, 0.2);
    transform: scale(0.8) translateY(30px);
    transition: var(--transition-medium);
    animation: popupShake 0.5s ease-in-out;
}

@keyframes popupShake {

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

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: scale(1) translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: scale(1) translateX(5px);
    }
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    z-index: 10;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.popup-content {
    padding: 50px 40px;
    text-align: center;
}

.popup-badge {
    display: inline-block;
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.popup-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.popup-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-coupon {
    background: rgba(2, 248, 211, 0.1);
    border: 2px dashed var(--green-primary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.coupon-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.coupon-code {
    font-size: 2rem;
    font-weight: 900;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.coupon-discount {
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

.popup-urgency {
    font-size: 0.95rem;
    color: #ffcc00;
    margin-bottom: 25px;
    font-weight: 600;
}

.popup-btn {
    display: inline-block;
    background: var(--green-gradient);
    color: var(--black-primary);
    padding: 16px 35px;
    border-radius: var(--radius-xl);
    font-size: 1.05rem;
    font-weight: 700;
    transition: var(--transition-medium);
    width: 100%;
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 480px) {
    .popup-content {
        padding: 40px 25px;
    }

    .popup-title {
        font-size: 1.4rem;
    }

    .coupon-code {
        font-size: 1.6rem;
    }

    .popup-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}