/* public/styles_landing.css */

:root {
    --bg-color: #0a0a0c;
    --card-bg: #16161a;
    --primary: #0088cc;
    --accent: #f7931a;
    --success: #31b545;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glow: 0 0 20px rgba(247, 147, 26, 0.3);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(247, 147, 26, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(247, 147, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 147, 26, 0); }
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 120px;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0a0a0c 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: repeating-linear-gradient(transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px);
    transform: rotate(45deg);
    z-index: 0;
}

.hero-content {
    z-index: 10; /* Aumentei para ficar acima do vídeo */
    max-width: 800px;
    animation: slideIn 1s ease-out;
    position: relative; /* Necessário para o z-index funcionar */
}

.badge {
    background: rgba(247, 147, 26, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--accent);
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

p.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bolt-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--accent));
    animation: float 3s ease-in-out infinite;
}

.btn-cta {
    background: linear-gradient(45deg, var(--primary), #00aaff);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.6);
}

/* --- VIDEO DEMO SECTION --- */
.video-section {
    padding: 40px 20px;
    background: var(--bg-color);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.mockup-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 30px;
    max-width: 600px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%);
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.2);
    padding: 0;
    overflow: hidden;
}

.mockup-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    filter: blur(30px);
}

.mockup-screen {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    width: 100%;
    height: 100%;
    border: none;
}

.mockup-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* --- FEATURES --- */
.features-section {
    padding: 80px 20px;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.carousel-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.feature-card {
    display: inline-block;
    width: 280px;
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin: 0 15px;
    white-space: normal;
    vertical-align: top;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon { font-size: 40px; margin-bottom: 20px; }
.feature-title { font-size: 1.2rem; font-weight: bold; margin-bottom: 10px; color: white; }
.feature-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- PRICING --- */
.pricing {
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: rgba(22, 22, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    position: relative;
    transition: 0.3s;
}

.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(247, 147, 26, 0.1);
}

.price-card.fiat-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.1);
}

.price-card.crypto-featured {
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(247, 147, 26, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.ln-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: black; font-weight: 800;
    padding: 5px 20px; border-radius: 20px; font-size: 0.9rem;
    box-shadow: 0 0 15px var(--accent);
    animation: pulse-glow 2s infinite;
    white-space: nowrap; display: flex; align-items: center; gap: 5px;
}

.offer-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white; font-weight: 800;
    padding: 5px 20px; border-radius: 20px; font-size: 0.9rem;
    box-shadow: 0 0 15px var(--primary);
    animation: pulse-blue 2s infinite;
    white-space: nowrap;
}

.price-old { text-decoration: line-through; color: #666; font-size: 1.2rem; }
.price-val { font-size: 3.5rem; font-weight: 800; color: white; line-height: 1; }
.price-period { font-size: 1rem; color: #999; }
.crypto-fee { font-size: 2.5rem; color: var(--accent); font-weight: 800; }

.benefits { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.benefits li { padding: 10px 0; border-bottom: 1px solid #333; color: #ccc; }
.benefits li::before { content: "✓"; color: var(--success); margin-right: 10px; font-weight: bold; }

/* --- MODAL --- */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center; justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a20;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    border: 1px solid #333;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute; top: 20px; right: 20px;
    font-size: 30px; cursor: pointer; color: #666;
}
.close:hover { color: white; }

input, select {
    width: 100%;
    padding: 12px;
    margin: 5px 0 15px;
    background: #0a0a0c;
    border: 1px solid #333;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
}
input:focus, select:focus { outline: none; border-color: var(--primary); }

/* FORMS (Steps) */
.step-content { display: none; animation: slideIn 0.3s ease; }
.step-content.active { display: block; }

.form-group { margin-bottom: 5px; }
.form-group label { display: block; color: #ccc; font-size: 0.9rem; font-weight: bold; }
.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }

.radio-group { display: flex; gap: 20px; margin-bottom: 15px; }
.radio-group label { display: flex; align-items: center; gap: 5px; cursor: pointer; color: white; }
input[type="radio"] { width: auto; margin: 0; }

.hotmart-container { text-align: center; margin-top: 30px; animation: slideIn 0.5s ease; }
.hotmart-container img { width: 100%; max-width: 280px; cursor: pointer; transition: transform 0.2s; filter: drop-shadow(0 0 10px rgba(49,181,69,0.3)); }
.hotmart-container img:hover { transform: scale(1.05); }
.success-title { color: var(--success); font-size: 1.8rem; margin-bottom: 10px; font-weight: 800; }

.btn-secondary {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.btn-secondary:hover { border-color: white; color: white; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .carousel-container { width: 100%; }
    .feature-card { width: 240px; }
    .price-card.crypto-featured { transform: scale(1); }
}
/* public/styles_landing.css */

:root {
    --bg-color: #0a0a0c;
    --card-bg: #16161a;
    --primary: #0088cc;
    --accent: #f7931a;
    --success: #31b545;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glow: 0 0 20px rgba(247, 147, 26, 0.3);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- CABEÇALHO E LOGO --- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    text-align: center; /* Centraliza a imagem */
    z-index: 20; /* Fica acima de tudo */
    /* Gradiente suave para o logo não sumir no fundo */
    background: linear-gradient(to bottom, rgba(10,10,12,1) 0%, rgba(10,10,12,0) 100%);
}

.logo-wide {
    display: inline-block;
    width: 100%;
    max-width: 1100px; /* Tamanho ideal Widescreen */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

.logo-wide:hover {
    transform: scale(1.15);
}

/* --- ANIMATIONS --- */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
@keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(247, 147, 26, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(247, 147, 26, 0); } 100% { box-shadow: 0 0 0 0 rgba(247, 147, 26, 0); } }
@keyframes pulse-blue { 0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(0, 136, 204, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); } }
@keyframes slideIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh; /* Aumentei um pouco */
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    padding: 600px 20px 120px; /* Mais padding no topo por causa do logo */
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0a0a0c 100%);
    position: relative; overflow: hidden;
}

.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: repeating-linear-gradient(transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px); transform: rotate(45deg); z-index: 0; }
.hero-content { z-index: 2; max-width: 800px; animation: slideIn 1s ease-out; }

.badge { background: rgba(247, 147, 26, 0.15); color: var(--accent); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; border: 1px solid var(--accent); display: inline-block; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-size: 3.5rem; line-height: 1.1; font-weight: 800; margin-bottom: 20px; background: linear-gradient(to right, #fff, #ccc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.highlight { color: var(--primary); -webkit-text-fill-color: var(--primary); }
p.subheadline { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.bolt-icon { width: 80px; height: 80px; margin-bottom: 20px; filter: drop-shadow(0 0 15px var(--accent)); animation: float 3s ease-in-out infinite; }

.btn-cta { background: linear-gradient(45deg, var(--primary), #00aaff); color: white; padding: 18px 40px; font-size: 1.2rem; font-weight: 800; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; transition: all 0.3s; box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4); display: inline-block; }
.btn-cta:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 15px 40px rgba(0, 136, 204, 0.6); }

/* --- VIDEO DEMO SECTION --- */
.video-section { padding: 40px 20px; background: var(--bg-color); text-align: center; position: relative; z-index: 2; margin-top: -60px; }
.mockup-wrapper { display: inline-flex; align-items: center; justify-content: center; position: relative; border-radius: 30px; max-width: 600px; width: 100%; aspect-ratio: 1 / 1; background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%); border: 1px solid #333; box-shadow: 0 20px 60px rgba(0, 136, 204, 0.2); padding: 0; overflow: hidden; }
.mockup-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: radial-gradient(circle, rgba(0, 136, 204, 0.5) 0%, rgba(0, 0, 0, 0) 70%); z-index: 0; filter: blur(30px); }
.mockup-screen { position: relative; z-index: 1; border-radius: 30px; overflow: hidden; background: #000; width: 100%; height: 100%; border: none; }
.mockup-screen video { width: 100%; height: 100%; object-fit: contain; display: block; }

/* --- FEATURES & SHOWCASE --- */
.features-section { padding: 80px 20px; background: var(--bg-color); }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 50px; font-weight: 800; }
.carousel-container { overflow: hidden; white-space: nowrap; position: relative; }
.carousel-track { display: inline-block; animation: scroll 20s linear infinite; }
.feature-card { display: inline-block; width: 280px; background: var(--card-bg); border: 1px solid #333; border-radius: 20px; padding: 30px; margin: 0 15px; white-space: normal; vertical-align: top; transition: 0.3s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.feature-icon { font-size: 40px; margin-bottom: 20px; }
.feature-title { font-size: 1.2rem; font-weight: bold; margin-bottom: 10px; color: white; }
.feature-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Showcase (Telas) */
.showcase-section { padding: 80px 20px; background: #0f0f12; }
.showcase-item { display: flex; align-items: center; justify-content: center; gap: 50px; max-width: 1100px; margin: 0 auto 100px auto; }
.showcase-item:nth-child(even) { flex-direction: row-reverse; }
.showcase-text { flex: 1; max-width: 500px; }
.showcase-text h3 { font-size: 2rem; margin-bottom: 15px; background: linear-gradient(to right, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.showcase-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }
.showcase-img-wrap { flex: 1; position: relative; }
.showcase-img { width: 100%; max-width: 600px; border-radius: 15px; border: 1px solid #333; box-shadow: 0 20px 60px rgba(0,0,0,0.5); transition: transform 0.3s ease; }
.showcase-img:hover { transform: scale(1.02); border-color: var(--primary); }
.tag-feature { display: inline-block; background: rgba(0, 136, 204, 0.15); color: var(--primary); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-bottom: 15px; border: 1px solid var(--primary); }

/* --- PRICING --- */
.pricing { padding: 80px 20px; text-align: center; position: relative; }
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1000px; margin: 0 auto; }
.price-card { background: rgba(22, 22, 26, 0.8); backdrop-filter: blur(10px); border: 1px solid #333; border-radius: 20px; padding: 40px; flex: 1; min-width: 300px; position: relative; transition: 0.3s; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: 0 0 30px rgba(247, 147, 26, 0.1); }
.price-card.fiat-featured { border: 2px solid var(--primary); box-shadow: 0 0 20px rgba(0, 136, 204, 0.1); }
.price-card.crypto-featured { border: 2px solid var(--accent); box-shadow: 0 0 30px rgba(247, 147, 26, 0.2); transform: scale(1.05); z-index: 2; }
.ln-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: black; font-weight: 800; padding: 5px 20px; border-radius: 20px; font-size: 0.9rem; box-shadow: 0 0 15px var(--accent); animation: pulse-glow 2s infinite; white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.offer-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-weight: 800; padding: 5px 20px; border-radius: 20px; font-size: 0.9rem; box-shadow: 0 0 15px var(--primary); animation: pulse-blue 2s infinite; white-space: nowrap; }
.price-old { text-decoration: line-through; color: #666; font-size: 1.2rem; }
.price-val { font-size: 3.5rem; font-weight: 800; color: white; line-height: 1; }
.price-period { font-size: 1rem; color: #999; }
.crypto-fee { font-size: 2.5rem; color: var(--accent); font-weight: 800; }
.benefits { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.benefits li { padding: 10px 0; border-bottom: 1px solid #333; color: #ccc; }
.benefits li::before { content: "✓"; color: var(--success); margin-right: 10px; font-weight: bold; }

/* --- MODAL --- */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); align-items: center; justify-content: center; z-index: 2000; backdrop-filter: blur(5px); }
.modal-content { background: #1a1a20; padding: 30px; border-radius: 20px; width: 90%; max-width: 600px; border: 1px solid #333; position: relative; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); max-height: 90vh; overflow-y: auto; }
.close { position: absolute; top: 20px; right: 20px; font-size: 30px; cursor: pointer; color: #666; }
.close:hover { color: white; }
input, select { width: 100%; padding: 12px; margin: 5px 0 15px; background: #0a0a0c; border: 1px solid #333; color: white; border-radius: 8px; font-size: 1rem; }
input:focus, select:focus { outline: none; border-color: var(--primary); }

.step-content { display: none; animation: slideIn 0.3s ease; }
.step-content.active { display: block; }
.form-group { margin-bottom: 5px; }
.form-group label { display: block; color: #ccc; font-size: 0.9rem; font-weight: bold; }
.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }
.radio-group { display: flex; gap: 20px; margin-bottom: 15px; }
.radio-group label { display: flex; align-items: center; gap: 5px; cursor: pointer; color: white; }
input[type="radio"] { width: auto; margin: 0; }

/* MENSAGEM SUCESSO */
#success-message { text-align: center; padding: 20px; }
.success-icon { font-size: 4rem; display: block; margin-bottom: 15px; }

.btn-secondary { background: transparent; border: 1px solid #555; color: #ccc; padding: 15px 30px; border-radius: 50px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.btn-secondary:hover { border-color: white; color: white; }

@media (max-width: 900px) {
    .showcase-item, .showcase-item:nth-child(even) { flex-direction: column; text-align: center; }
    .showcase-text { margin-bottom: 30px; }
}
@media (max-width: 768px) { h1 { font-size: 2.5rem; } .carousel-container { width: 100%; } .feature-card { width: 240px; } .price-card.crypto-featured { transform: scale(1); } }