/* ==========================================
   1. CONFIGURAÇÕES BASE E SEO
   ========================================== */
:root {
    --laranja: #ff7a17;
    --dark: #232323;
    --gray-bg: #f8f8f8;
}

html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { color: #333; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* Top Bar */
.top-bar { background: var(--laranja); color: white; padding: 10px 0; font-size: 13px; }
.top-bar a { color: white; text-decoration: none; }

/* Header */
header { background: var(--dark); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.nav-links { list-style: none; display: flex; }
.nav-links li a { color: white; text-decoration: none; margin: 0 15px; font-size: 14px; transition: 0.3s; }
.nav-links li a:hover { color: var(--laranja); }

/* Hero Section */
.hero-fullscreen {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('fotos/servidor.svg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    width: 100%;
}
.hero-flex { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.hero-content { flex: 1; text-align: left; z-index: 2; }
.hero-content h1 { font-size: 38px; font-weight: 700; margin-bottom: 20px; line-height: 1.1; }
.btn-hero-white {
    background-color: #ffffff;
    color: #ff7a17;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-flex; /* Garante que as margens funcionem corretamente */
    align-items: center;
    gap: 12px;
    font-size: 18px;
    transition: 0.3s;
    
    /* ADICIONE ESTAS LINHAS ABAIXO */
    margin-top: 30px;    /* Aumenta a distância do texto "Além de um SSL gratuito" */
    margin-bottom: 10px; /* Ajusta a distância para o título do preço logo abaixo */
}
.hero-anual { color: #ff7a17; font-size: 28px; margin-top: 30px; font-weight: bold; }
.hero-image-side { flex: 1; display: flex; justify-content: flex-end; }
.hero-image-side img { max-width: 600px; width: 100%; height: auto; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8)); }

/* Stats Section */
.stats { display: flex; padding: 80px 0; gap: 50px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.stat-card { padding: 40px 20px; border-radius: 12px; text-align: center; }
.stat-card.gray { background: #eee; color: var(--laranja); }
.stat-card.orange { background: var(--laranja); color: white; }
.stat-img img { width: 150px; height: 150px; border-radius: 12px; object-fit: cover; }
.benefit { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.benefit i { font-size: 40px; color: var(--laranja); }

/* Planos Seção */
.section-gray { background: var(--gray-bg); padding: 80px 0; }
.section-padding { padding: 80px 0; }
.title-center { text-align: center; margin-bottom: 50px; }
.grid-planos { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }

/* VPS 4 e VPS 5 Lado a Lado */
.grid-dual { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    margin-top: 30px; 
    flex-wrap: nowrap; 
}
.grid-dual .card-plano { 
    flex: 1; 
    max-width: 380px; 
}

.card-plano { background: white; border: 1px dashed #ccc; padding: 45px 30px; border-radius: 15px; text-align: center; transition: 0.3s; position: relative; }
.card-plano:hover { border-color: var(--laranja); transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.card-icon { background: var(--laranja); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; }
.price { font-size: 20px; margin: 25px 0; color: var(--dark); }
.price strong { font-size: 40px; }
.features { list-style: none; text-align: left; border-top: 1px solid #eee; padding-top: 25px; margin-bottom: 30px; }
.features li { font-size: 13.5px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.features i { color: var(--laranja); font-size: 12px; }
.btn-buy { background: var(--laranja); color: white; text-decoration: none; padding: 12px; display: block; border-radius: 5px; font-weight: bold; }
.pix-info { text-align: center; margin-top: 50px; font-weight: bold; font-size: 22px; }

/* Domínios */
.section-dark-highlight { background-color: #1a1a1a; padding: 100px 0; }
.section-dark-highlight .tag-orange { color: #ffffff !important; text-align: center; }
.section-dark-highlight .text-gray-light { color: #ffffff !important; opacity: 0.9; }
.section-dark-highlight h2.text-white { color: #ffffff !important; }

.domain-search-box { max-width: 900px; margin: 0 auto 60px; display: flex; background: #fff; border-radius: 50px; padding: 5px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); overflow: hidden; }
.domain-search-box input { flex: 1; padding: 15px 30px; border: none; outline: none; font-size: 16px; }
.btn-search { background: #111111; color: white; border: none; padding: 0 40px; border-radius: 40px; font-weight: bold; cursor: pointer; }

.domain-grid-clean { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.dom-item-new-dark { 
    background: #252525; padding: 30px; border-radius: 15px; display: flex; 
    align-items: center; justify-content: flex-start !important; gap: 15px; border-left: 5px solid var(--laranja); transition: 0.3s; 
    padding-left: 40px;
}
.dom-item-new-dark .dom-name { color: #ffffff !important; font-size: 18px; font-weight: 700; }
.dom-item-new-dark .dom-number { color: var(--laranja) !important; font-weight: bold; font-size: 18px; min-width: 30px; }

/* Porque Nos Contratar */
.section-dark-fullscreen {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
}
.flex-porque-nos {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.porque-nos-image { flex: 1; display: flex; justify-content: center; }
.porque-nos-image img { width: 100%; max-width: 450px; height: auto; border-radius: 10px; object-fit: cover; }
.porque-nos-content { flex: 1.2; text-align: left; }
.diferenciais-list { margin-top: 30px; display: flex; flex-direction: column; gap: 25px; }
.diferencial-item { display: flex; align-items: flex-start; gap: 20px; }
/* Aumenta o tamanho dos ícones laranja e melhora o alinhamento */
.diferencial-item i {
    color: var(--laranja);
    font-size: 32px; /* Aumentado de 24px para 32px */
    margin-top: 5px;
    width: 45px; /* Define uma largura fixa para alinhar os textos perfeitamente */
    text-align: center;
}

.diferencial-item h3 {
    font-size: 22px; /* Título um pouco mais forte */
    margin-bottom: 8px;
    color: #ffffff;
}

.diferencial-item p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.5;
}

.diferenciais-list {
    margin-top: 40px; /* Mais espaço entre o título principal e a lista */
    display: flex;
    flex-direction: column;
    gap: 35px; /* Mais espaço entre cada item da lista */
}
/* Rodapé */
.main-footer { background-color: #232323; color: #ffffff; padding: 80px 0 0 0; }
.footer-header { text-align: center; margin-bottom: 60px; }
.orange-line { width: 80px; height: 4px; background-color: var(--laranja); margin: 0 auto; }
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    padding-bottom: 60px; 
    text-align: center; 
    align-items: center; 
}
.footer-logo { width: 100%; max-width: 180px; height: auto; filter: brightness(0) invert(1); }
.contact-item i { font-size: 40px; color: var(--laranja); margin-bottom: 15px; display: block; }
.footer-social a { background-color: var(--laranja); color: white; width: 45px; height: 45px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; margin-top: 20px; font-size: 20px; }

/* Menu Acessos */
.acessos-container { position: relative; display: inline-block; }
.btn-acessos { background-color: var(--laranja); color: #ffffff; padding: 10px 25px; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; }
.acessos-menu { display: none; position: absolute; right: 0; top: 100%; background-color: #232323; min-width: 260px; padding: 20px; border: 1px solid var(--laranja); border-radius: 8px; z-index: 1100; }
.acessos-container:hover .acessos-menu { display: block; }
.acessos-menu p { color: #ffffff !important; font-weight: bold; margin-bottom: 15px; font-size: 14px; border-bottom: 1px solid #3d3d3d; padding-bottom: 8px; }
.acessos-menu a { color: white; text-decoration: none; display: flex; align-items: center; gap: 12px; padding: 10px 0; transition: 0.3s; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .hero-flex, .flex-porque-nos { flex-direction: column; text-align: center; }
    .porque-nos-content { text-align: center; }
    .diferencial-item { flex-direction: column; align-items: center; }
    .hero-image-side { justify-content: center; margin-top: 30px; }
}

@media (max-width: 768px) {
    .nav-links, .top-bar span:first-child { display: none; }
    .stats, .footer-grid, .domain-grid-clean { flex-direction: column; text-align: center; }
    .footer-grid, .domain-grid-clean { grid-template-columns: 1fr; }
    .grid-dual { flex-direction: column; align-items: center; flex-wrap: wrap; }
    .grid-dual .card-plano { flex: none; width: 100%; max-width: 320px; }
    .footer-logo { margin: 0 auto 20px auto; }
    .btn-text { display: none; }
    .btn-icon { display: inline-block; }
}

/* Stats Section - Preenchimento Total */
.stats { 
    display: flex; 
    padding: 100px 0; 
    gap: 60px; 
    align-items: center; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 280px); /* Quadrados maiores */
    grid-template-rows: repeat(2, 280px);
    gap: 0; /* Remove espaço branco entre os quadrados se desejar efeito colado */
    border-radius: 20px;
    overflow: hidden; /* Garante que as imagens respeitem o arredondamento */
}

.stat-card { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Aumentando os textos dentro dos quadrados */
.stat-card h3 {
    font-size: 300px; /* Números bem grandes */
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 20px; /* Texto descritivo maior */
    font-weight: 600;
    line-height: 1.2;
}

.stat-card.gray { background: #f2f2f2; color: var(--laranja); }
.stat-card.orange { background: var(--laranja); color: white; }

/* Stats Section - Equilíbrio de Tamanho e Fonte */
.stats { 
    display: flex; 
    padding: 80px 0; 
    gap: 50px; 
    align-items: center; 
}

.stats-grid { 
    display: grid; 
    /* Reduzido de 280px para 240px para um visual mais elegante */
    grid-template-columns: repeat(2, 240px); 
    grid-template-rows: repeat(2, 240px);
    gap: 0; 
    border-radius: 15px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

/* Letras e Números Aumentados */
.stat-card h3 {
    font-size: 55px; /* Aumentado para dar mais destaque */
    font-weight: 800;
    margin-bottom: 2px;
    line-height: 1;
}

.stat-card p {
    font-size: 22px; /* Fonte das letras aumentada */
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-card.gray { background: #f2f2f2; color: var(--laranja); }
.stat-card.orange { background: var(--laranja); color: white; }

.stat-img {
    width: 100%;
    height: 100%;
}

.stat-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}

/* Lista de Benefícios Lateral */
.benefit { 
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px; 
}

.benefit i { 
    font-size: 45px; 
    color: var(--laranja);
}

.benefit h4 { 
    font-size: 24px; /* Título lateral maior */
    font-weight: 700;
    margin-bottom: 3px; 
    color: var(--dark); 
}

.benefit p { 
    font-size: 18px; /* Texto descritivo lateral maior */
    color: #666; 
}

/* Responsividade */
@media (max-width: 992px) {
    .stats { flex-direction: column; padding: 40px 20px; text-align: center; }
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto;
        max-width: 500px;
    }
    .stat-card h3 { font-size: 45px; }
    .stat-card p { font-size: 18px; }
}

/* ==========================================
   STATS SECTION - EQUILÍBRIO E PREENCHIMENTO
   ========================================== */
.stats { 
    display: flex; 
    padding: 80px 0; 
    gap: 50px; /* Espaço entre a grid e a lista de textos */
    align-items: center; 
}

.stats-grid { 
    display: grid; 
    /* Ajustado para 240px: nem gigante, nem muito pequeno */
    grid-template-columns: repeat(2, 240px); 
    grid-template-rows: repeat(2, 240px);
    gap: 0; 
    border-radius: 20px;
    overflow: hidden; 
    flex-shrink: 0; /* Impede que os quadrados diminuam em telas médias */
}

.stat-card { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Tamanho dos textos dentro dos quadrados */
.stat-card h3 {
    font-size: 33px !important; 
    font-weight: 800;
    margin-bottom: 2px;
    line-height: 1;
}

.stat-card p {
    font-size: 20px !important; 
    font-weight: 600;
    line-height: 1.1;
}

.stat-card.gray { background: #f2f2f2; color: var(--laranja); }
.stat-card.orange { background: var(--laranja); color: white; }

.stat-img { width: 100%; height: 100%; }
.stat-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}

/* LISTA DE BENEFÍCIOS - LADO DIREITO */
.stats-list {
    flex: 1; /* Ocupa todo o espaço que sobrar à direita */
}

.benefit { 
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px; 
}

.benefit i { 
    font-size: 45px; 
    color: var(--laranja);
}

.benefit h4 { 
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 3px; 
    color: var(--dark); 
}

.benefit p { 
    font-size: 18px;
    color: #666; 
}

/* Ajuste Responsivo para Tablets e Celulares */
@media (max-width: 992px) {
    .stats { 
        flex-direction: column; 
        padding: 40px 20px; 
    }
    .stats-grid { 
        /* No mobile, diminui um pouco para não vazar da tela */
        grid-template-columns: repeat(2, 170px); 
        grid-template-rows: repeat(2, 170px);
    }
    .stat-card h3 { font-size: 28px !important; }
    .stat-card p { font-size: 16px !important; }
}

/* Redução do tamanho do texto na lista de benefícios */
.benefit h4 { 
    font-size: 18px; /* Reduzido para ficar mais elegante */
    font-weight: 700;
    margin-bottom: 2px; 
    color: var(--dark); 
}

.benefit p { 
    font-size: 14px; /* Reduzido de 18px para 14px */
    color: #666; 
    line-height: 1.4;
}

.benefit i { 
    font-size: 32px; /* Reduzi o tamanho do ícone para acompanhar o texto */
    color: var(--laranja);
}

.benefit { 
    margin-bottom: 25px; /* Ajuste no espaçamento entre os itens */
}

/* Ajuste fino nos números dentro dos quadrados (se achar necessário) */
.stat-card h3 {
    font-size: 38px !important; /* Tamanho levemente menor para os números */
}

.stat-card p {
    font-size: 18px !important; /* Tamanho menor para a legenda do quadrado */
}

/* Container Geral */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Espaçamento padrão entre itens */
    padding: 1rem;
}

/* Item de Benefício */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: transform 0.3s ease;
}

/* Estilização Moderna do Ícone */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: rgba(255, 122, 23, 0.1); /* Laranja suave de fundo */
    border-radius: 12px; /* Cantos arredondados modernos */
    color: #ff7a17; /* Cor principal dos seus prints */
    font-size: 1.4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Tipografia */
.benefit-content h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: #232323;
    font-weight: 700;
}

.benefit-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* --- AJUSTES PARA MOBILE --- */
@media (max-width: 768px) {
    .stats-list {
        gap: 2.5rem; /* Aumenta a distância entre as frases no mobile */
        margin-top: 2rem;
    }

    .benefit-item {
        flex-direction: column; /* Opcional: ícone acima do texto no mobile */
        align-items: center;
        text-align: center;
    }

    .icon-wrapper {
        margin-bottom: 0.5rem;
        width: 60px; /* Ícone um pouco maior para toque fácil */
        height: 60px;
    }
}

/* Container da lista forçando uma frase abaixo da outra */
.stats-list {
    display: flex;
    flex-direction: column; /* Garante o empilhamento vertical */
    gap: 25px; /* Espaçamento entre os itens no Desktop */
    flex: 1;
}

/* Estilo de cada item de benefício */
.benefit-item {
    display: flex;
    align-items: center; /* Alinha ícone e texto horizontalmente entre si */
    gap: 20px;
    padding: 10px;
    transition: transform 0.3s ease;
}

/* Estilização Moderna dos Ícones (Wrapper) */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 55px;
    background: rgba(255, 122, 23, 0.1); /* Laranja bem suave no fundo */
    border-radius: 12px; /* Cantos arredondados modernos */
    color: var(--laranja);
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Ajuste fino dos textos */
.benefit-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* --- AJUSTES PARA MOBILE --- */
@media (max-width: 768px) {
    .stats-list {
        gap: 35px; /* Aumenta a distância entre as frases no mobile para melhor leitura */
        margin-top: 30px;
        align-items: center; /* Centraliza tudo no mobile */
    }

    .benefit-item {
        flex-direction: column; /* Ícone fica acima do texto no mobile */
        text-align: center;
        gap: 15px;
    }

    .benefit-content h4 {
        font-size: 20px; /* Título levemente maior no mobile */
    }
}

/* Barra de Direitos Reservados */
.footer-bottom {
    background-color: #1a1a1a; /* Um tom mais escuro que o footer principal */
    color: #888;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #333;
}

.footer-bottom a {
    color: var(--laranja);
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Ajuste para mobile: empilhar as colunas em telas pequenas */
@media (max-width: 768px) {
    .footer-bottom .flex-between {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.footer-copy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Três colunas iguais */
    align-items: center;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #888;
}

.copy-left { text-align: left; }
.copy-center { font-weight: 500; }
.copy-right { text-align: right; }

.footer-bottom a { color: #bbb; text-decoration: none; transition: 0.3s; }
.footer-bottom a:hover { color: var(--laranja); }

@media (max-width: 768px) {
    .footer-copy-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .copy-left, .copy-right { text-align: center; }
}

/* Banner LGPD */
.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #232323;
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    display: none; /* Inicia escondido e o JS mostra se necessário */
}

.cookie-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-container p {
    font-size: 14px;
    margin: 0;
}

.cookie-container a {
    color: var(--laranja);
    text-decoration: underline;
}

.btn-cookie {
    background-color: var(--laranja);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-cookie:hover {
    background-color: #e66a15;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .cookie-flex {
        flex-direction: column;
        text-align: center;
    }
    /* --- AJUSTES ESPECÍFICOS PARA MOBILE --- */
@media (max-width: 768px) {
    
    .hero-fullscreen {
        padding-top: 80px; /* Aumenta o espaço no topo da seção Hero */
        min-height: auto;  /* Permite que a seção se ajuste ao conteúdo */
        padding-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 28px !important; /* Reduz o tamanho do título para não quebrar feio */
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center; /* Centraliza para melhor estética no mobile */
    }

    .hero-content p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 25px;
    }

    /* Centraliza o botão e o preço no mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-anual {
        font-size: 22px !important;
        margin-top: 20px;
    }
}
}

/* Estado inicial (escondido/deslocado) */
.move-left { transform: translateX(-100px); opacity: 0; transition: all 0.8s ease-out; }
.move-right { transform: translateX(100px); opacity: 0; transition: all 0.8s ease-out; }
.move-top { transform: translateY(-100px); opacity: 0; transition: all 0.8s ease-out; }
.move-bottom { transform: translateY(100px); opacity: 0; transition: all 0.8s ease-out; }

/* Estado quando entra na tela */
.move-left.show, .move-right.show { transform: translateX(0); opacity: 1; }
.move-top.show, .move-bottom.show { transform: translateY(0); opacity: 1; }

/* Container da lista de acessos */
.acessos-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acessos-menu ul li {
    margin-bottom: 5px;
}

/* Link principal: Alinhamento horizontal garantido */
.acessos-menu ul li a {
    display: flex; /* Alinha bolinha, ícone e texto na mesma linha */
    align-items: center; /* Centraliza verticalmente */
    text-decoration: none;
    color: #fff;
    padding: 8px 0;
    transition: color 0.3s ease;
    gap: 12px; /* Espaçamento entre os elementos */
}

/* Criando a bolinha customizada no lado esquerdo */
.acessos-menu ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #555; /* Cor padrão da bolinha (cinza) */
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    flex-shrink: 0; /* Impede que a bolinha amasse */
}

/* EFEITO HOVER: Muda tudo para laranja ao mesmo tempo */
.acessos-menu ul li a:hover {
    color: var(--laranja);
}

/* Bolinha fica laranja no hover */
.acessos-menu ul li a:hover::before {
    background-color: var(--laranja);
}

/* Ícone do Font Awesome fica laranja no hover */
.acessos-menu ul li a i {
    width: 20px; /* Largura fixa para alinhar os ícones verticalmente */
    text-align: center;
    transition: color 0.3s ease;
}

.acessos-menu ul li a:hover i {
    color: var(--laranja);
}

/* Estilo Base do Botão Hero */
.btn-hero-white {
    background-color: #ffffff;
    color: #ff7a17;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    transition: all 0.3s ease; /* Transição suave para todos os efeitos */
    cursor: pointer;
    border: 2px solid #ffffff; /* Borda invisível para evitar pulos no hover */
}

/* Efeito ao passar o mouse (Hover) */
.btn-hero-white:hover {
    background-color: #ff7a17; /* Inverte a cor de fundo para laranja */
    color: #ffffff;            /* Inverte a cor do texto para branco */
    transform: scale(1.05);    /* Aumenta levemente o tamanho */
    box-shadow: 0 10px 20px rgba(255, 122, 23, 0.3); /* Adiciona um brilho laranja */
}

/* Efeito no ícone dentro do botão ao passar o mouse */
.btn-hero-white:hover i {
    transform: translateX(5px); /* O ícone da seta dá um pequeno salto para a direita */
    transition: transform 0.3s ease;
}

.section-dark-fullscreen {
    background-color: #1a1a1a;
    padding: 100px 0;
    color: #ffffff;
}

.flex-porque-nos {
    display: flex;
    align-items: center;
    gap: 60px;
}

.porque-nos-content h2 {
    font-size: 36px;
    margin: 15px 0 25px;
}

.tag-orange {
    color: var(--laranja);
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
}

.diferenciais-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.diferencial-item {
    display: flex;
    gap: 20px;
}

.diferencial-item i {
    font-size: 28px;
    color: var(--laranja);
    margin-top: 5px;
}

.diferencial-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.diferencial-item p {
    color: #aaa;
    font-size: 15px;
}

/* Responsividade para Mobile */
@media (max-width: 992px) {
    .flex-porque-nos {
        flex-direction: column;
        text-align: center;
    }
    .diferencial-item {
        flex-direction: column;
        align-items: center;
    }
    .porque-nos-image img {
        max-width: 100%;
    }
}

.customize-plan { padding: 80px 20px; }

.plan-builder-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.slider-container { flex: 2; }
.price-display { 
    flex: 1; 
    text-align: center; 
    border-left: 1px solid #333; 
    padding-left: 40px; 
}

/* Estilo do Slider */
input[type=range] {
    width: 100%;
    margin: 20px 0;
    cursor: pointer;
    accent-color: var(--laranja);
}

.features-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background: #252525;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #eee;
}

.final-price {
    font-size: 42px;
    font-weight: bold;
    color: var(--laranja);
    margin: 15px 0;
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .plan-builder-box { flex-direction: column; padding: 20px; }
    .price-display { border-left: none; padding-left: 0; border-top: 1px solid #333; padding-top: 30px; }
    .features-display { grid-template-columns: 1fr; }
}

.plan-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.badge-tech {
    background: var(--laranja);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.f-detail {
    background: #222;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: 0.3s;
}

.f-detail:hover { border-color: var(--laranja); }

.f-detail i { color: var(--laranja); font-size: 18px; margin-bottom: 8px; display: block; }
.f-detail small { display: block; color: #888; font-size: 11px; text-transform: uppercase; }
.f-detail strong { display: block; color: #fff; font-size: 14px; margin-top: 4px; }

.check-list-mini {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    display: inline-block;
}

.check-list-mini li { font-size: 13px; color: #bbb; margin-bottom: 5px; }
.check-list-mini li i { color: #2ecc71; margin-right: 8px; }

@media (max-width: 768px) {
    .features-detailed-grid { grid-template-columns: repeat(2, 1fr); }
}

.plano-personalizado-bg {
    position: relative;
    padding: 120px 0;
    /* Substitua pelo caminho da sua imagem */
    background-image: url('fotos/host2.svg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax suave */
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* Camada extra escura (Overlay) */
.plano-personalizado-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 0.85 deixa quase preto, aparecendo apenas detalhes sutis da imagem */
    background: rgba(0, 0, 0, 0.85); 
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do fundo escuro */
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 38px;
    margin: 20px 0;
    line-height: 1.2;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Botão WhatsApp */
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-cta:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .cta-content h2 { font-size: 28px; padding: 0 20px; }
    .cta-content p { font-size: 16px; padding: 0 20px; }
    .plano-personalizado-bg { padding: 80px 0; }
}