* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

body {
    background: #080b11; 
    color: #f8fafc;
    overflow-x: hidden;
    position: relative;
}

/* NOTIFICAÇÃO EM TEMPO REAL COM TRANSIÇÃO ANIMADA */
.live-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #111827;
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    font-size: 13px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    transform: translateY(0);
    opacity: 1;
}

.live-avatar {
    background: rgba(16, 185, 129, 0.2);
    padding: 6px;
    border-radius: 50%;
}
.live-time {
    color: #10b981;
    font-weight: 600;
    display: inline-block;
    margin-left: 5px;
}

/* HEADER REFORMULADO COM A LOGO FLUIDA NO FUNDO */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(11, 15, 25, 0.95); 
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    overflow: hidden; /* Evita que a logo gigante quebre a altura do cabeçalho */
}

/* A LOGO ADAPTÁVEL DENTRO DA TOPBAR */
.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0; /* Alinha perfeitamente na extremidade direita */
    width: 350px; /* Largura limite ideal para não atropelar o menu */
    height: 100%;
    background: url("../img/logo.png") no-repeat right center;
    background-size: contain; /* Ajusta o tamanho perfeitamente baseado na altura da barra */
    opacity: 0.12; /* Nitidez controlada: visível, mas sem sumir e sem atrapalhar os textos */
    pointer-events: none; /* Deixa os cliques passarem direto para os links */
    z-index: -1; /* Garante que fica por trás do texto do menu */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.green-text { color: #00e676; }

.logo-img {
    width: 44px;
    height: 44px;
    background: #1e293b;
    border-radius: 10px;
    border: 1px solid #334155;
    padding: 6px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2; /* Garante que os links fiquem acima do fundo decorativo */
}

.menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.menu a:hover { color: #00e676; }

.menu .login-link {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #334155;
    color: #fff;
}

/* HERO SECURE */
.hero {
    text-align: center;
    padding: 90px 20px 60px;
    background: radial-gradient(circle at center, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
}

.badge-tecnologia {
    background: rgba(0, 230, 118, 0.1);
    color: #00e676;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 30%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #94a3b8;
    font-size: 19px;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.hero-security {
    margin-top: 15px;
    font-size: 12px;
    color: #64748b;
}

/* BOTÕES REAIS */
.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn.green {
    background: #00e676;
    color: #04080f;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}
.btn.green:hover {
    transform: translateY(-2px);
    background: #00ff81;
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.5);
}

.btn.blue {
    background: #1e293b;
    color: #f8fafc;
    border: 1px solid #334155;
}
.btn.blue:hover {
    background: #334155;
    transform: translateY(-2px);
}

/* RECURSOS */
.features-section { padding: 40px 0; }
.features-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-item {
    background: #111827;
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 16px;
    width: 32%;
    min-width: 280px;
}
.feature-icon { font-size: 28px; margin-bottom: 15px; }
.feature-item h3 { font-size: 18px; margin-bottom: 10px; color: #fff; }
.feature-item p { color: #94a3b8; font-size: 14px; line-height: 1.5; }

/* TITULOS */
.title {
    text-align: center;
    margin: 80px 0 20px;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
}
.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
    margin-top: -10px;
}

/* CONTAINER DAS AVALIAÇÕES ROTATIVAS */
.online-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    vertical-align: middle;
    margin-left: 10px;
    display: inline-block;
}

.avaliacoes-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 180px; 
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-card.dynamic {
    position: absolute;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-top: 3px solid #00e676; 
    padding: 24px;
    border-radius: 12px;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.review-card.dynamic.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 5;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.user-meta strong { display: block; color: #f8fafc; font-size: 15px; }
.verified-tag { color: #38bdf8; font-size: 11px; font-weight: 600; }
.time-stamp {
    color: #64748b; font-size: 11px; background: #1e293b; padding: 2px 8px; border-radius: 4px;
}
.stars { color: #f59e0b; margin-bottom: 10px; font-size: 14px; }
.review-card.dynamic p { font-size: 14px; color: #cbd5e1; line-height: 1.6; }

/* TABELA DE PLANOS DETALHADOS */
.planos {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 40px 30px;
    border-radius: 16px;
    width: 340px;
    display: flex;
    flex-direction: column;
}

.card h3 { font-size: 24px; margin-bottom: 10px; }
.price { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 15px; }
.price span { font-size: 14px; color: #64748b; font-weight: 400; }
.plan-desc { font-size: 14px; color: #94a3b8; margin-bottom: 20px; min-height: 42px; }
.divider { border: none; border-top: 1px solid #1e293b; margin-bottom: 20px; }

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1; 
}
.plan-features li { font-size: 14px; color: #cbd5e1; margin-bottom: 12px; }
.card .btn { width: 100%; text-align: center; padding: 14px; }

.basic-btn { background: transparent; color: #fff; border: 1px solid #334155; }
.basic-btn:hover { background: #1e293b; }

.card.destaque {
    border: 2px solid #00e676;
    background: #111e36;
    position: relative;
    transform: scale(1.03);
}
.card.destaque .price { color: #00e676; }
.tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00e676;
    color: #020617;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* RESPONSIVIDADE */
@media(max-width:950px){
    .feature-item { width: 100%; }
    .card.destaque { transform: none; }
    .hero h1 { font-size: 40px; }
    .avaliacoes-container { max-width: 100%; height: 220px; }
}
@media(max-width:600px){
    .topbar { flex-direction: column; gap: 15px; }
    /* No celular a marca d'água oculta automaticamente para não amassar o menu */
    .topbar::after { display: none; } 
    .buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .card { width: 100%; }
}

/* =========================
   TRAVA DE ZOOM MOBILE
   ========================= */

html {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    overscroll-behavior: none;
}

body {
    overscroll-behavior: none;
    touch-action: manipulation;
}

/* Impede zoom ao dar focus em input (principal problema no iPhone) */
input, select, textarea {
    font-size: 16px !important;
}

/* Remove zoom de duplo toque */
* {
    touch-action: manipulation;
}

/* Evita comportamento de pinch zoom em alguns browsers */
@media screen and (max-width: 768px) {
    html, body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}