/*
Theme Name: Fluxo Digital by FlashCode
Theme URI: http://flashcode.com.br/
Author: Lucas Yan
Author URI: http://flashcode.com.br/
Description: Tema personalizado para a Landing Page Fluxo Digital com integração ACF.
Version: 1.0
*/

:root {
    --primary: #8a2be2;
    --primary-glow: rgba(138, 43, 226, 0.4);
    --bg: #050505;
    --surface: #0f0f0f;
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --section-spacing: clamp(50px, 8vw, 100px);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    text-decoration: none !important; /* Remove qualquer underline globalmente */
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section { padding: var(--section-spacing) 0; }

/* Header Reativo */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: 0.4s;
}
header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: clamp(50px, 5vw, 60px); }

/* Hero */
.hero {
    height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
}
.hero-video {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%; z-index: -2; object-fit: cover; opacity: 0.35;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg) 90%);
    z-index: -1;
}
.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 7vw, 5rem);
    line-height: 1.1; font-weight: 700; margin-bottom: 25px;
    background: linear-gradient(180deg, #fff 40%, #888 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Botões */
.btn-main {
    background: var(--primary); color: #fff;
    padding: 18px 35px; border-radius: 12px;
    font-weight: 800; text-transform: uppercase; 
    display: inline-block; transition: 0.3s;
    border: none; cursor: pointer;
    letter-spacing: 1px;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--primary-glow); }

/* Grid de Serviços - Destaque Duplo */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; margin-top: 50px;
}
.service-card {
    background: var(--surface);
    padding: clamp(35px, 5vw, 50px); border-radius: 24px;
    border: 1px solid var(--border); transition: 0.4s;
    display: flex; flex-direction: column;
    justify-content: space-between;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.service-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { 
    font-size: 1.6rem; margin-bottom: 15px; 
    font-family: 'Space Grotesk', sans-serif; 
    letter-spacing: -1px;
}
.featured-card { border: 1px solid rgba(138, 43, 226, 0.4); background: linear-gradient(145deg, #12081f 0%, #0f0f0f 100%); }

/* Seção Método - Mobile Optimized */
#metodo { background: #080808; }
.method-container { max-width: 900px; margin: 0 auto; }
.method-step {
    display: flex; gap: clamp(20px, 5vw, 40px);
    margin-bottom: clamp(25px, 4vw, 50px);
    padding: clamp(20px, 4vw, 35px); border-radius: 24px;
    background: rgba(255,255,255,0.02);
    border-left: 4px solid var(--primary);
}
.step-num {
    font-size: clamp(2rem, 5vw, 3rem); font-family: 'Space Grotesk', sans-serif;
    color: rgba(138, 43, 226, 0.4); font-weight: 800; line-height: 1;
}

/* Cases */
.case-card {
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--surface); border-radius: 32px;
    overflow: hidden; border: 1px solid var(--border);
}
.case-img { width: 100%; height: 100%; object-fit: cover; min-height: 350px; }
.case-body { padding: clamp(30px, 6vw, 60px); }

/* Contato */
.contact-box {
    background: var(--surface); padding: clamp(25px, 5vw, 60px);
    border-radius: 32px; border: 1px solid var(--border);
    display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px);
}
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; font-weight: 700; }
input, select, textarea {
    width: 100%; padding: 16px; background: #151515;
    border: 1px solid var(--border); border-radius: 12px;
    color: #fff; font-size: 1rem; transition: 0.3s;
}
input:focus { border-color: var(--primary); }

/* Mobile Adjustments */
@media (max-width: 992px) {
    .case-card, .contact-box { grid-template-columns: 1fr; }
    .desktop-only { display: none; }
    .hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 600px) {
    .method-step { flex-direction: column; gap: 10px; }
    .btn-main { width: 100%; text-align: center; }
}

footer { padding: 60px 0; border-top: 1px solid var(--border); text-align: center; }
.social-link { 
    display: inline-flex; width: 45px; height: 45px; 
    border: 1px solid var(--border); border-radius: 50%;
    align-items: center; justify-content: center; margin: 0 8px;
    color: #fff; transition: 0.3s;
}
.social-link:hover { background: var(--primary); transform: scale(1.1); }
