:root {
  --bg: #0A0F14;
  --accent: #1ED760;
  --danger: #FF4D4D;
  --ml-yellow: #FFE600;
  --text-main: #FFFFFF;
  --text-dim: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-main); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* --- HEADER --- */
.header {
  /* Reduzimos o padding lateral de 8% para 2% ou 30px */
  padding: 15px 3%; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  position: fixed; 
  width: 100%; 
  top: 0; 
  z-index: 1000;
  background: rgba(10, 15, 20, 0.85); 
  backdrop-filter: blur(15px); 
  border-bottom: 1px solid var(--border);
}

/* Garante que o link da logo não tenha margens extras */
.logo {
    display: flex;
    align-items: center;
    margin-left: 0; /* Garante que comece do zero à esquerda */
}

.logo a {
    display: flex;
    text-decoration: none;
}

/* --- HERO --- */
.hero { min-height: 80vh; display: flex; align-items: center; text-align: center; padding-top: 100px; }
.main-phrase { font-size: clamp(2.2rem, 8vw, 4.2rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -2px; }
.text-gradient { background: linear-gradient(90deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-dim); font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }

/* --- CERTIFICAÇÃO (STYLISH CARD) --- */
.certification-section { padding: 60px 0; }
.cert-card { 
    background: linear-gradient(145deg, #111820 0%, #0A0F14 100%); 
    border: 1px solid var(--border); border-radius: 30px; padding: 50px; 
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.text-ml { color: var(--ml-yellow); font-weight: 800; }
.cert-info h2 { font-size: 2.2rem; margin-bottom: 15px; }
/* 1. O TAMANHO DA IMAGEM EM SI */
.selo-ml { 
    width: 250px; /* <--- ALTERE AQUI (Ex: 180px para aumentar, 120px para diminuir) */
    height: auto; 
    animation: float 4s infinite ease-in-out; 
}

/* --- PROBLEMAS (MINIMALISTAS & ANIMADOS) --- */
.problems-simple { padding: 100px 0; background: #080c10; }
.text-red { color: var(--danger); }
.premium-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }

.problems-minimal-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
}

.item-problem {
    text-align: center; padding: 40px 20px; border-radius: 20px;
    background: rgba(255, 255, 255, 0.02); border: 1px solid transparent;
    transition: all 0.3s ease;
}

.item-problem:hover {
    background: rgba(255, 77, 77, 0.03);
    border-color: rgba(255, 77, 77, 0.2);
    transform: translateY(-5px);
}

.icon-red-pulse {
    font-size: 2rem; color: var(--danger); margin-bottom: 20px;
    display: inline-block; width: 70px; height: 70px; line-height: 70px;
    background: rgba(255, 77, 77, 0.1); border-radius: 50%;
    transition: 0.3s;
}

.item-problem:hover .icon-red-pulse {
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
    transform: scale(1.1);
}

.item-problem h3 { font-size: 1.1rem; font-weight: 600; color: #eee; }

/* --- WHATSAPP & BOTÕES --- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
  background: #25d366; color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 30px; z-index: 9999;
}
.online-dot { position: absolute; top: 5px; right: 5px; width: 12px; height: 12px; background: #fff; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2s infinite; }

.btn-glow { background: var(--accent); color: #000; padding: 18px 40px; border-radius: 12px; font-weight: 800; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-glow:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(30, 215, 96, 0.4); }

.btn-outline { border: 1px solid var(--accent); color: var(--accent); padding: 10px 20px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.8rem; }

/* --- SEÇÃO RESULTADOS --- */
.results-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #080c10, #0A0F14);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(30, 215, 96, 0.02);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.client-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.growth-badge {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.result-body p {
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Barra de progresso animada */
.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #fff);
    border-radius: 10px;
    transition: 1.5s cubic-bezier(0.1, 0, 0, 1);
}

/* Ajuste no Badge para centralizar títulos das seções */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* --- AJUSTE DA LOGO EM IMAGEM --- */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; /* Altere este valor para aumentar ou diminuir a sua logo */
    width: auto;  /* Mantém a proporção da imagem */
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05); /* Efeito sutil ao passar o mouse */
}

/* Ajuste para telas menores (Celular) */
@media (max-width: 768px) {
    .logo-img {
        height: 35px; /* Logo um pouco menor no celular para sobrar espaço */
    }
    
}
@media (max-width: 768px) {
    .stat-value { font-size: 2.2rem; }
    .results-grid { grid-template-columns: 1fr; }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

@media (max-width: 768px) {
    .cert-card { flex-direction: column; text-align: center; }
    .problems-minimal-grid { grid-template-columns: 1fr 1fr; }
}