/* Fontes personalizadas */
@font-face {
    font-family: 'Vinila Condensed';
    src: url('assets/fonts/vinila_condensed/Vinila Condensed Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Vinila Condensed';
    src: url('assets/fonts/vinila_condensed/Vinila Condensed Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Vinila Condensed';
    src: url('assets/fonts/vinila_condensed/Vinila Condensed Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Vinila Condensed';
    src: url('assets/fonts/vinila_condensed/Vinila Condensed ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Vinila Condensed';
    src: url('assets/fonts/vinila_condensed/Vinila Condensed Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vinila Condensed', 'Inter', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-style: normal;
}

/* Garantir que todas as fontes sejam normais (não itálicas) */
* {
    font-style: normal !important;
}

/* Efeitos de luz de fundo */
.light-effect {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.light-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: float 8s ease-in-out infinite;
}

.light-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float 6s ease-in-out infinite reverse;
}

.light-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
}

/* Gradiente de fundo animado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: translateX(0); }
    25% { opacity: 0.8; transform: translateX(10px); }
    50% { opacity: 0.7; transform: translateX(-5px); }
    75% { opacity: 0.9; transform: translateX(8px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    opacity: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 0, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header:hover::before {
    opacity: 1;
}

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
    transform: scale(1.05);
}

.header-cta-button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.header-cta-button:hover {
    background: #ff7700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0 80px;
    position: relative;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(255, 0, 0, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(1deg); }
}

.hero-content {
    z-index: 10;
    position: relative;
}

.main-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.4));
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 0, 0, 0.6)); }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 0, 0.2);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.5); }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: 
        linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.05) 100%),
        rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 0, 0, 0.3);
}

.info-item i {
    color: #ff0000;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: 
        linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #ff0000 100%);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(255, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff1a1a 0%, #e60000 50%, #ff1a1a 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.01);
}

/* Sections */
.why-join,
.stats,
.what-expect,
.waitlist {
    padding: 120px 0;
    position: relative;
}

.why-join::before,
.what-expect::before,
.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(255, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.benefit-item {
    background: 
        linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(255, 0, 0, 0.02) 100%),
        rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: 
        linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.05) 100%),
        rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.2);
}

.benefit-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: 
        linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #ff0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 15px 40px rgba(255, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.benefit-icon i {
    font-size: 3.2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.benefit-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-item p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 1rem;
}


.benefit-item {
    padding: 12px 8px;
    background: rgba(255,255,255,0.01);
    border-radius: 12px;
}
/* Stats Grid */
.stats {
    background: #000000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 60px 20px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 15px;
    display: block;
    text-shadow: none;
    font-family: 'Inter', Arial, sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.4;
}

/* Video Player Section */
.video-section {
    margin-top: 80px;
    text-align: center;
}

.video-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 600;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-player:hover {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.5);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.4),
        0 0 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: playButtonPulse 2s ease-in-out infinite;
}

@keyframes playButtonPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 10px 30px rgba(255, 0, 0, 0.4),
            0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 15px 40px rgba(255, 0, 0, 0.6),
            0 0 30px rgba(255, 0, 0, 0.5);
    }
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, #ff1a1a 0%, #e60000 100%);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 3px; /* Ajuste visual para centralizar o ícone play */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.video-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ff0000;
}

.video-info p {
    font-size: 0.9rem;
    color: #ccc;
    opacity: 0.9;
}

#youtubePlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Estados do player */
.video-player.playing .video-thumbnail {
    display: none;
}

.video-player.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 0, 0, 0.3);
    border-top: 3px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Otimizações de performance */
.video-thumbnail {
    will-change: transform;
}

.play-button {
    will-change: transform, box-shadow;
}

.video-player {
    will-change: box-shadow, border-color;
}

/* Video CTA Section */
.video-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.1) 0%, 
        rgba(255, 102, 0, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.video-cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Topics Grid */
.what-expect {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.topic-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #ff0000;
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topic-item:hover::before {
    opacity: 1;
}

.topic-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateX(5px);
}

.topic-item i {
    color: #ff0000;
    font-size: 1.3rem;
    min-width: 20px;
}

.topic-item span {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.highlight-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
    color: #ff0000;
    font-weight: 600;
}

.topic-item i {
    color: #ff0000;
    font-size: 1.5rem;
    margin-top: 5px;
}

.topic-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.topic-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Waitlist Form */
.waitlist {
    background: #000000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 120px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 60px;
    line-height: 1.5;
    font-weight: 400;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
}

.form-group input:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #888;
    font-weight: 400;
}

.form-disclaimer {
    margin-top: 0;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-disclaimer p {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.form-disclaimer p:first-child {
    font-size: 1.1rem;
    color: #ccc;
}

.form-disclaimer .privacy-text {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-content p {
    color: #c0c0c0;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Overlay de loading para redirecionamento */
.redirect-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4,4,6,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    flex-direction: column;
    gap: 12px;
}
.redirect-loading.show {
    display: flex;
}
.redirect-spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.12);
    border-top-color: #ff6600;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.redirect-loading .text {
    color: #fff;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Página de Confirmação - Design Limpo e Moderno */
.confirmation-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.logo-header {
    text-align: center;
    padding: 60px 0 40px;
}

/* manter logo pequena apenas na página de confirmação */
.confirmation-page .logo-header .main-logo {
    height: auto;
    width: auto;
}

.confirmation-content {
    flex: 1;
    max-width: 1100px; /* mais espaço em telas grandes */
    margin: 0 auto;
    padding: 0 20px 80px;
    width: 100%;
}

/* Regras específicas para a página de confirmação: evita impactar outras páginas */
.confirmation-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch; /* garante que os cards tenham mesma altura */
    grid-auto-rows: 1fr;
}

.confirmation-page .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px; /* mais espaço interno para evitar conteúdo espremido */
    border-radius: 14px;
    min-height: 180px;
    box-sizing: border-box;
}

.confirmation-page .benefit-icon {
    width: 72px; /* círculo menor que o original */
    height: 72px;
    margin: 0 0 18px 0;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #ff0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(255,0,0,0.18);
}

.confirmation-page .benefit-icon i {
    font-size: 1.6rem; /* ícone fica proporcional ao círculo */
}

.confirmation-page .benefit-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.confirmation-page .benefit-item p {
    font-size: 0.98rem;
    color: #cfcfcf;
    line-height: 1.6;
    margin: 0;
}

.success-section {
    text-align: center;
    margin-bottom: 60px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #ff0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
}

.success-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.success-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.main-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px; /* coluna de convite um pouco mais larga */
    gap: 72px; /* mais espaço entre colunas */
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    padding: 0 24px;
}

.invite-section {
    max-width: 100%;
    margin: 0;
}

.next-steps-section {
    text-align: left;
    padding: 18px 12px; /* espaço interno para respirar */
}

.next-steps-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}

.steps-description {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0 0 30px;
}

/* benefits-grid e benefit-item: regras de layout principais estão definidas acima (desktop).
    Ajustes mobile são aplicados dentro da media query abaixo para evitar sobrescritas. */

.exclusive-group {
    margin-top: 24px;
}

.btn-exclusive-group {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #ff0000 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.btn-exclusive-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff1a1a 0%, #e60000 50%, #ff1a1a 100%);
}

.invite-section {
    max-width: none;
    margin: 0;
}

.invite-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px; /* manter confortável, não espremido */
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.invite-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    text-align: center;
}

.invite-description {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 32px;
}

.code-display,
.link-display {
    margin-bottom: 24px;
}

.code-display label,
.link-display label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.invite-code-value {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ff0000;
    text-transform: uppercase;
}

.invite-link-value {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #ccc;
    word-break: break-all;
    line-height: 1.4;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-copy,
.btn-share {
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-share {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #ff0000 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
}

.stats-display {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

@media (max-width: 768px) {
    .logo-header {
        padding: 40px 0 30px;
    }
    
    .main-logo {
        height: auto;
    }
    
    .confirmation-content {
        padding: 0 16px 60px;
    }
    
    .success-section {
        margin-bottom: 40px;
    }
    
    .success-section h1 {
        font-size: 2rem;
    }
    
    .success-description {
        font-size: 1.1rem;
    }
    
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        display: flex;
        flex-direction: column-reverse; /* mostra invite antes no mobile */
    }
    
    .next-steps-section {
        text-align: center;
    }
    
    .next-steps-section h2 {
        font-size: 1.6rem;
    }
    
    .steps-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
        gap: 12px;
    }
    
    .benefit-icon {
        width: 72px;
        height: 72px;
        background: rgba(255, 0, 0, 0.06);
        border: 2px solid rgba(255, 0, 0, 0.14);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        color: #ff0000;
    }
    .action-buttons .btn-copy,
    .action-buttons .btn-share {
        width: 100%;
        display: block;
    }
    
    .invite-card {
        padding: 24px;
        border-radius: 20px;
    }

    .invite-card .action-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .invite-card h2 {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .invite-code-value {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

.confirm-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.confirm-main-card {
    background: 
        linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(255, 0, 0, 0.02) 100%),
        rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.confirm-hero {
    margin-bottom: 40px;
}

.confirm-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.confirm-hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.confirm-icon svg {
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
}

.confirm-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0;
    border: none;
}

.confirm-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
}

.confirm-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

    .invite-box {
        width: 100%;
        background: 
            linear-gradient(135deg, rgba(255, 0, 0, 0.04) 0%, rgba(255, 0, 0, 0.01) 100%),
            rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        position: relative;
        top: 0;
    }

.invite-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
}

.invite-code {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px dashed rgba(255, 0, 0, 0.3);
    padding: 20px 25px;
    border-radius: 15px;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.invite-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-word;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.invite-link .url {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.invite-actions {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

.invite-actions button {
    flex: 1;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.invite-stats {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.invite-stats-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.invite-stats-count {
    font-size: 2rem;
    font-weight: 700;
    color: #ff0000;
    display: block;
}

@media (max-width: 1200px) {
    .confirm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .invite-box {
        position: relative;
        top: auto;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .confirm-wrap {
        padding: 60px 0 80px;
    }
    
    .confirm-main-card {
        padding: 40px 25px;
    }
    
    .confirm-hero h1 {
        font-size: 2rem;
    }
    
    .invite-box {
        padding: 30px 20px;
    }
    
    .invite-actions {
        flex-direction: column;
        gap: 10px;
    }
}

.modal-close {
    background: #ff0000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e60000;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .event-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 40px 0;
    }
    
    .info-item {
        padding: 15px 25px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .main-logo {
        max-width: 85%;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .benefits-grid,
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

    .benefit-item {
        padding: 48px 36px;
        min-height: 180px;
    }
    .benefit-item {
        padding: 35px 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 15px;
    }
    
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        padding: 0 5px;
    }
    
    /* Video responsivo */
    .video-title {
        font-size: 1.4rem;
        padding: 0 15px;
    }
    
    .video-section {
        margin-top: 60px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-overlay {
        padding: 20px 15px 15px;
    }
    
    .video-info h4 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 30px;
        min-height: 90vh;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 35px;
    }
    
    .event-info {
        gap: 12px;
        margin: 30px 0;
    }
    
    .info-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 20px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .topics-grid {
        gap: 15px;
        margin-top: 40px;
    }
    
    .topic-item {
        padding: 18px 20px;
        gap: 12px;
    }
    
    .topic-item i {
        font-size: 1.2rem;
        min-width: 18px;
    }
    
    .topic-item span {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Form responsivo mobile */
    .waitlist {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 0 10px;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    
    .waitlist-form {
        padding: 35px 25px;
        margin-bottom: 35px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group input {
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .form-disclaimer {
        padding: 0 10px;
    }
    
    .form-disclaimer p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .form-disclaimer p:first-child {
        font-size: 0.95rem;
    }
    
    /* Header mobile */
    .header {
        padding: 12px 0;
    }
    
    .logo {
        height: 35px;
    }
    
    .header-cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Video mobile */
    .video-section {
        margin-top: 40px;
    }
    
    .video-title {
        font-size: 1.2rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .video-container {
        margin: 0 15px;
    }
    
    .video-cta {
        margin-top: 40px;
        padding: 30px 15px;
    }
    
    .video-cta-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

    /* Email suggestions dropdown (visual alinhado ao site) */
    .email-suggestions {
        position: absolute;
        background: linear-gradient(180deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
        border: 1px solid rgba(255,255,255,0.06);
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        border-radius: 12px;
        max-height: 220px;
        overflow: auto;
        z-index: 2000;
        margin-top: 8px;
    }

    .email-suggestions .suggestion-item {
        padding: 10px 14px;
        color: #fff;
        font-size: 0.95rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.02);
    }

    .email-suggestions .suggestion-item:last-child {
        border-bottom: none;
    }

    .email-suggestions .suggestion-item:hover,
    .email-suggestions .suggestion-item.active {
        background: linear-gradient(90deg, rgba(255,102,0,0.12), rgba(255,51,0,0.06));
    }

    .email-suggestions .provider {
        opacity: 0.8;
        font-size: 0.85rem;
    }

/* Scroll personalizado para o dropdown de sugestões */
.email-suggestions::-webkit-scrollbar {
    width: 10px;
}
.email-suggestions::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
}
.email-suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6600, #ff3300);
    border-radius: 8px;
    border: 2px solid rgba(20,20,20,0.95);
}
.email-suggestions::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff7700, #ff4400);
}

/* Firefox */
.email-suggestions {
    scrollbar-width: thin;
    scrollbar-color: #ff6600 rgba(255,255,255,0.02);
}


/* ============================
   POPUP MODALS
   ============================ */

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-modal.show {
    display: flex;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.popup-content {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 35px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

/* Scroll personalizado para popups */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6600, #ff3300);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff7700, #ff4400);
}

.popup-modal.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.popup-close i {
    width: 20px;
    height: 20px;
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup-header p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 400;
}

.popup-form {
    margin-bottom: 20px;
}

.popup-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.popup-form .form-group {
    margin-bottom: 0;
}

.popup-form input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
}

.popup-form input:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.popup-form input::placeholder {
    color: #888;
    font-weight: 400;
}

.form-benefits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.form-benefits h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.2;
}

.form-benefits li:last-child {
    margin-bottom: 0;
}

.form-benefits li i {
    width: 14px;
    height: 14px;
    color: #ff0000;
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.5));
}

.popup-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 50%, #ff6600 100%);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(255, 102, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    animation: buttonPulse 3s ease-in-out infinite;
}

.popup-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.popup-submit-btn:hover::before {
    left: 100%;
}

.popup-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(255, 102, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #ff7720 0%, #ff5500 50%, #ff7720 100%);
}

.popup-submit-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.popup-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(255, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff1a1a 0%, #e60000 50%, #ff1a1a 100%);
}

.popup-submit-btn i {
    width: 18px;
    height: 18px;
}

.popup-disclaimer {
    text-align: center;
    color: #777;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-top: 12px;
}

/* Exit Intent Modal Styles */
.exit-intent .popup-content {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 0, 0, 0.1);
}

.exit-header h3 {
    color: #ff0000;
    font-size: 1.9rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.exit-offer {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.offer-badge {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.exit-offer h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0 6px 0;
    line-height: 1.2;
}

.exit-offer p {
    color: #b0b0b0;
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
}

.popup-submit-btn.special {
    background: linear-gradient(135deg, #16a34a, #15803d);
    animation: buttonPulse 3s ease-in-out infinite, pulse 2s infinite;
}

.popup-submit-btn.special:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    box-shadow: 
        0 20px 50px rgba(22, 163, 74, 0.5),
        0 0 30px rgba(22, 163, 74, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Desktop specific optimizations */
@media (min-width: 1024px) {
    .popup-content {
        max-width: 700px;
        padding: 40px;
    }
    
    .popup-header h3 {
        font-size: 1.9rem;
    }
    
    .exit-header h3 {
        font-size: 2.1rem;
    }
    
    .popup-form input {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .popup-submit-btn {
        padding: 20px 50px;
        font-size: 1.1rem;
    }
    
    .form-benefits {
        padding: 25px;
        margin: 25px 0;
    }

    /* alinhar os 3 cards de benefício em uma linha */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        align-items: start;
    }
    
    .exit-offer {
        padding: 25px;
        margin: 25px 0;
    }
}

/* Mobile Responsiveness for Modals */
@media (max-width: 768px) {
    .popup-content {
        padding: 40px 30px;
        margin: 20px;
        max-width: none;
        width: calc(100% - 40px);
        border-radius: 20px;
    }
    
    .popup-form .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .popup-header h3 {
        font-size: 1.8rem;
    }
    
    .exit-header h3 {
        font-size: 2rem;
    }
    
    .exit-offer h4 {
        font-size: 1.4rem;
    }
    
    .popup-submit-btn {
        font-size: 1rem;
        padding: 18px 40px;
    }
    
    .form-benefits {
        padding: 25px;
        margin: 25px 0;
    }
    
    .exit-offer {
        padding: 25px;
        margin: 25px 0;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
    }
}
