:root {
    --primary: #06b6d4;
    --primary-glow: rgba(6, 182, 212, 0.3);
    --secondary: #3b82f6;
    --secondary-glow: rgba(59, 130, 246, 0.2);
    --bg-dark: #03040b;
    --card-bg: rgba(15, 20, 35, 0.6);
    --border-light: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gold: #f59e0b;
    --gold-glow: rgba(245, 158, 11, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Elements */
.ambient-glow {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
}

.glow-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    filter: blur(100px);
}

.grid-pattern {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(var(--border-light) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    opacity: 0.2;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Components */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-heading);
    font-size: 1rem;
    border: none;
    text-align: center;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Hero */
.hero {
    padding-top: 2rem; /* Reduzido de 4rem */
    padding-bottom: 2rem; /* Reduzido de 4rem */
    text-align: center;
}

.badge-founder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.5rem; /* Reduzido de 3rem */
    margin-bottom: 1rem; /* Reduzido de 1.5rem */
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    background: #000;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    background: var(--card-bg);
    aspect-ratio: 16/9;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 4, 11, 0.6), transparent 50%);
    pointer-events: none;
}

/* Hero Action Area (Layout Lado a Lado - Versão Compacta) */
.hero-action-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem; /* Reduzido de 3rem */
    max-width: 900px; /* Reduzido de 1000px */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .hero-action-area {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.scarcity-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 20px; /* Reduzido de 24px */
    padding: 1.5rem; /* Reduzido de 2rem */
    flex: 1;
    max-width: 400px; /* Reduzido de 500px */
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.scarcity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px; /* Reduzido de 4px */
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.scarcity-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem; /* Reduzido de 1rem */
    margin-bottom: 1rem; /* Reduzido de 1.5rem */
}

.lote-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.vagas-count {
    text-align: left;
}

.vagas-number {
    display: block;
    font-size: 3rem; /* Reduzido de 4rem */
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vagas-label {
    font-size: 0.8rem; /* Reduzido de 0.9rem */
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    display: block;
}

.progress-bar-container {
    width: 100%;
    height: 6px; /* Reduzido de 8px */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 50px;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: progress-load 2s ease-out forwards;
}

@keyframes progress-load {
    from { width: 0; }
}

.scarcity-text {
    font-size: 0.8rem; /* Reduzido de 0.85rem */
    color: var(--text-muted);
    line-height: 1.3;
}

.cta-area {
    flex: 1;
    max-width: 350px; /* Reduzido de 450px */
    text-align: center;
}

.cta-area .btn {
    font-size: 1rem; /* Reduzido de 1.1rem */
    padding: 1.2rem 1.5rem; /* Reduzido de 1.5rem 2rem */
    width: 100%;
}

.cta-subtitle {
    font-size: 0.85rem; /* Reduzido de 0.9rem */
    margin-top: 1rem; /* Reduzido de 1.5rem */
    color: var(--text-muted);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-header i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-header h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
}

.agreement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .agreement-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Scarcity / Price Section */
.offer-section {
    text-align: center;
}

.price-box {
    margin: 3rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.price-value {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-currency { font-size: 1.5rem; vertical-align: super; }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    grid-column: 1 / -1; /* Spans across both columns in the offer card */
}

@media (max-width: 992px) {
    .tiers-grid { grid-template-columns: repeat(2, 1fr); }
}

.tier-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    opacity: 0.6;
}

.tier-card.active {
    opacity: 1;
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.05);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.tier-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.tier-card .tier-price { font-size: 1.2rem; font-weight: 800; color: var(--text-main); }

/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 1rem 0;
}

.faq-answer {
    color: var(--text-muted);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}

/* Testimonial / Authority */
.authority-box {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .authority-box { grid-template-columns: 1fr; text-align: center; }
}

.profile-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.profile-img.circle {
    border-radius: 50%;
    border: 4px solid var(--border-light);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founders-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.founder-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 15px var(--primary-glow);
    transition: transform 0.3s ease;
}

.founder-item:hover {
    transform: scale(1.1) rotate(5deg);
}

.founder-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-dark);
}

.founder-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--primary);
    box-shadow: none;
    color: var(--primary);
    font-family: var(--font-heading);
    cursor: pointer;
}

.founder-item.placeholder:hover {
    background: rgba(6, 182, 212, 0.1);
    border-style: solid;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover { color: var(--primary); }

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

.float-insta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-insta:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(214, 36, 159, 0.4);
}

.float-insta svg {
    width: 32px;
    height: 32px;
}

.pulse-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}
