:root {
    --bg-dark: #060911;
    --bg-card: rgba(13, 20, 36, 0.7);
    --bg-card-hover: rgba(20, 30, 54, 0.9);
    --primary: #2563eb;
    --primary-glow: #3b82f6;
    --accent: #f59e0b;
    --accent-glow: #fbbf24;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(245, 158, 11, 0.4);
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* LUZES DE FUNDO (AMBIENT GLOW) */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: var(--primary);
}

.glow-2 {
    top: 40%;
    right: -150px;
    background: var(--accent);
}

h1, h2, h3, .sub-secao, .categoria-tag {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HEADER */
header {
    background: rgba(6, 9, 17, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 1rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-tech {
    color: var(--accent);
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--accent-glow);
}

.btn-whats-nav {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 0.65rem 1.3rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s;
}

.btn-whats-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 1.5rem 5rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 950px;
}

.tag-topo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-glow);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero h1 span {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

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

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-principal {
    background: linear-gradient(135deg, var(--accent), #d97706);
    color: #000;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
}

.btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

.btn-secundario {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secundario:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
}

/* MISSÃO */
.missao {
    padding: 4rem 6%;
    position: relative;
    z-index: 1;
}

.missao-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.missao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.missao h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.missao h2 span {
    color: var(--accent);
}

.linha-amarela {
    height: 3px;
    width: 60px;
    background: var(--accent);
    margin: 0 auto 1.5rem;
}

.missao p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

/* SEÇÕES */
.produtos, .servicos-secao, .processo {
    padding: 6rem 6%;
    position: relative;
    z-index: 1;
}

.header-secao {
    margin-bottom: 3.5rem;
}

.header-secao.text-center {
    text-align: center;
}

.sub-secao {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.titulo-secao, .titulo-secao-centro {
    font-size: 2.5rem;
    margin-top: 0.3rem;
}

.titulo-secao span, .titulo-secao-centro span {
    color: var(--accent);
}

/* CARDS DE PRODUTOS */
.grid-destaque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: all 0.4s;
}

.grid-destaque:hover {
    border-color: var(--border-highlight);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.grid-destaque.inverso {
    direction: rtl;
}

.grid-destaque.inverso .conteudo-destaque {
    direction: ltr;
}

.categoria-tag {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-glow);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.conteudo-destaque h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lista-beneficios {
    list-style: none;
    margin-top: 1.5rem;
}

.lista-beneficios li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
}

.lista-beneficios i {
    color: var(--accent);
    font-size: 1rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 8px;
    border-radius: 6px;
}

.imagem-container {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    background-color: #03050a;
}

.imagem-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-destaque:hover .imagem-container img {
    transform: scale(1.05);
}

/* CARDS DE OUTROS SERVIÇOS */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 2.5rem 1.8rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
}

.card .icone {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* PASSO A PASSO */
.grid-passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.passo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.numero-passo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.passo h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.passo p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* RODAPÉ */
footer {
    background: #020408;
    padding: 5rem 6% 2.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-titulo {
    font-size: 3rem;
    margin-bottom: 0.3rem;
}

.footer-titulo span {
    color: var(--accent);
}

.footer-sub {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contatos-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    text-decoration: none;
    background: var(--bg-card);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.contato-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.contato-item i {
    color: var(--accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.hosting-info {
    margin-top: 0.5rem;
    color: var(--accent);
    font-weight: 700;
}

/* RESPONSIVO PARA CELULAR */
@media (max-width: 820px) {
    nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-destaque, .grid-destaque.inverso {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 1.5rem;
    }

    .grid-destaque.inverso .conteudo-destaque {
        direction: ltr;
    }

    .imagem-container {
        height: 250px;
    }

    .contatos-grid {
        flex-direction: column;
    }

    .contato-item {
        justify-content: center;
    }
}
