@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #05020c; /* Roxo/Preto Profundo do GTA 6 */
    --bg-card: rgba(18, 11, 30, 0.75); /* Card translúcido violáceo */
    --border-color: rgba(236, 72, 153, 0.18); /* Rosa Neon sutil */
    --border-color-focus: rgba(249, 115, 22, 0.5); /* Foco em Laranja Sunset */
    --color-pink: #ec4899; /* Rosa Neon do GTA 6 */
    --color-pink-glow: rgba(236, 72, 153, 0.4);
    --color-purple: #8b5cf6; /* Roxo Oficial do GTA 6 */
    --color-purple-glow: rgba(139, 92, 246, 0.4);
    --color-cyan: #f97316; /* Laranja Pôr do Sol do GTA 6 */
    --color-cyan-glow: rgba(249, 115, 22, 0.4);
    --color-success: #10b981;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-sans: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(236, 72, 153, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(249, 115, 22, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
    line-height: 1.6;
}

/* Vídeo de Fundo Cidade */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 520px;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    margin: 0;
    padding: 0;
    
    /* Máscara de degradê para fundir com a página: 30% visível no topo, 0% no bottom */
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.video-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.35);
    transform-origin: center center;
    animation: fadeInVideo 2s ease-in-out forwards;
}

@keyframes fadeInVideo {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffa851 0%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.25);
}

.logo-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 800px;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out;
}

.badge-hype {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    border: none;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.25);
    animation: pulse 2.5s infinite;
}

h1.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-wrap: balance;
}

@media (max-width: 768px) {
    h1.hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.2px;
    }
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
    text-wrap: balance;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.55;
    }
}

/* Countdown labels */
.countdown-kicker {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0 0 6px;
    text-align: center;
}

.countdown-subkicker {
    color: var(--color-cyan);
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 0 8px;
    text-align: center;
}

/* Countdown Clock */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.countdown-box {
    background: rgba(18, 11, 30, 0.6);
    border: 1px solid rgba(236, 72, 153, 0.15);
    padding: 20px;
    border-radius: 16px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
}

.countdown-box:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 72, 153, 0.35);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(236, 72, 153, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.35);
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 8px;
    }
    .countdown-box {
        min-width: 75px;
        padding: 12px 6px;
    }
    .countdown-number {
        font-size: 1.8rem;
    }
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

.platforms-container {
    align-items: center;
    animation: fadeIn 1.2s ease-out;
    display: flex;
    justify-content: center;
    margin: 0 auto 35px;
    max-width: 200px;
    width: 100%;
}

.platforms-img {
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
    height: auto;
    max-width: 200px;
    opacity: 0.95;
    transition: var(--transition-smooth);
    width: 100%;
}

.platforms-container:hover .platforms-img {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    opacity: 1;
}

/* Card Section */
.card-section {
    width: 100%;
    max-width: 950px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .card-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Info Card */
.info-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.art-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.art-wrapper:hover .art-image {
    transform: scale(1.06);
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to top, #120b1e 0%, transparent 100%);
    pointer-events: none;
}

.info-card-content {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
    border-left: 4px solid var(--color-pink);
    padding-left: 12px;
}

.info-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.trust-badge-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.2);
}

/* Form Card */
.form-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.form-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.form-card:hover::after {
    opacity: 0.7;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Input Styles */
.input-group {
    margin-bottom: 18px;
}

.input-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-weight: 700;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    background: rgba(9, 13, 22, 0.8);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-field:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan-glow);
}

.select-field {
    width: 100%;
    padding: 12px 16px;
    background: rgba(9, 13, 22, 0.8);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.select-field:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan-glow);
}

/* Custom Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checkbox-group a,
.checkbox-group a:link,
.checkbox-group a:visited,
#lead-form .checkbox-group a,
#lead-form .checkbox-group a:link,
#lead-form .checkbox-group a:visited {
    color: #f97316;
    color: var(--color-cyan);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition-smooth);
}

.checkbox-group a:hover,
.checkbox-group a:focus-visible,
#lead-form .checkbox-group a:hover,
#lead-form .checkbox-group a:focus-visible {
    color: #ffa851;
    text-shadow: 0 0 10px var(--color-cyan-glow);
}

.checkbox-container {
    position: relative;
    min-width: 16px;
    height: 16px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid rgba(236, 72, 153, 0.35);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.checkbox-group:hover input ~ .checkmark {
    border-color: var(--color-pink);
}

.checkbox-group input:checked ~ .checkmark {
    background-color: var(--color-pink);
    border-color: var(--color-pink);
    box-shadow: 0 0 8px var(--color-pink-glow);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-group input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-group .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Button Shimmer Effect */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ffa851 0%, #ff6b00 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
    transition: var(--transition-smooth);
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5), 0 0 15px rgba(255, 122, 0, 0.1);
}

.btn-submit:hover::after {
    left: 130%;
    transition: all 0.6s ease-in-out;
}

/* Success View */
.success-view {
    display: none;
    text-align: center;
    animation: scaleIn 0.5s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid var(--color-success);
    color: var(--color-success);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.btn-whatsapp {
    width: 100%;
    padding: 14px;
    background: #25d366;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #22c05b;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Animations definitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Utilities */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}
@media (min-width: 769px) {
    .desktop-only {
        display: inline !important;
    }
}

/* Seção de Impacto Final (GTA 6 Version) */
.impact-section {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    width: 100%;
    max-width: 950px;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.05);
    animation: fadeIn 1.2s ease-out;
}

.impact-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-wrap: balance;
    line-height: 1.3;
}

.footer-logo {
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.25));
    height: 76px;
    max-height: 76px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

/* Espaçador Superior responsivo */
.header-spacer {
    margin-bottom: 90px;
    padding-top: 60px;
    width: 100%;
}

@media (max-width: 768px) {
    .header-spacer {
        margin-bottom: 30px;
        padding-top: 15px;
    }
    
    .container {
        padding: 20px 15px !important;
    }
    
    .hero {
        margin-bottom: 25px !important;
    }
    
    .badge-hype {
        max-width: 220px !important;
        text-wrap: balance !important;
    }

    /* Removendo visual de box para info-card e form-card no mobile */
    .info-card, .form-card {
        background: none !important;
        border: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 20px 0 !important;
    }
    
    .form-card::after {
        display: none !important;
        content: none !important;
    }
    
    .info-card-content {
        padding: 20px 0 0 0 !important;
    }
    
    .art-wrapper {
        border-radius: 16px !important;
        height: 180px !important;
    }
    
    .trust-badge-container {
        gap: 8px !important;
    }
    
    .trust-badge {
        font-size: 0.7rem !important;
        padding: 8px 4px !important;
    }
    
    .impact-section {
        padding: 30px 15px !important;
        margin-top: 30px !important;
    }
}
