/* -------------------------------------------------------------------
   VARIÁVEIS DE TEMA E RESET (INÍCIO)
   ------------------------------------------------------------------- */
:root {
    /* Cores Black Friday (BF) */
    --bf-primary: #6F42C1; /* Roxo Premium */
    --bf-primary-dark: #542f99;
    --bf-gold: #f7c948; /* Dourado/Amarelo de Destaque */
    --bf-gold-dark: #d4a72c;
    --bf-dark: #111118; /* Fundo Escuro Base */
    --bf-card-glow: rgba(111, 66, 193, 0.35); /* Sombra de brilho */

    /* Cores de Texto e Componentes */
    --text-light: #e8e6ff; /* Texto Principal no Fundo Escuro */
    --muted: #A3A3A3; /* Texto Secundário Suave */
    --success: #10B981; /* Verde (Recomendado/Sucesso) */
    --font-stack: 'Inter', sans-serif;
    --radius: 12px; /* Raio de borda padrão */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    line-height: 1.6;
    background: linear-gradient(180deg, #07050a, #0f0812 40%); /* Fundo Escuro BF */
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: var(--bf-gold); /* Links Dourados */
    transition: color 0.3s;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

ul, ol {
    list-style: none;
}

.small {
    font-size: 0.9rem;
}

.muted {
    color: var(--muted);
}

.recommended {
    border: 2px solid var(--success) !important;
    background-color: rgba(16, 185, 129, 0.08) !important;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2) !important;
}

/* TIPOGRAFIA GLOBAL */
h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
}

/* BOTÕES (Ajustados para o tema BF) */
.cta-primary, .ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.cta-primary {
    background-color: var(--bf-primary);
    color: var(--text-light);
    border: 2px solid var(--bf-primary);
}

.cta-primary:hover {
    background-color: var(--bf-primary-dark);
    border-color: var(--bf-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.4);
}

.ghost {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--muted);
}

.ghost:hover {
    border-color: var(--bf-gold);
    color: var(--bf-gold);
    background-color: rgba(247, 201, 72, 0.05);
}

/* -------------------------------------------------------------------
   SEÇÕES ESPECÍFICAS
   ------------------------------------------------------------------- */

/* ==========================
   SEÇÃO HERO
=========================== */
.hero {
    padding: 100px 0;
    background: linear-gradient(150deg, var(--bf-dark), #20142b 60%);
    color: #fff;
    position: relative;
    overflow: hidden; /* Evita que o pseudoelemento de brilho vaze */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 15%, rgba(111, 66, 193, 0.35), transparent 40%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative; /* Para ficar acima do ::before */
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.hero p {
    margin-top: 18px;
    font-size: 18px;
    color: rgba(220, 210, 255, 0.9);
}

.hero img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
    transition: transform .45s ease, box-shadow .45s ease;
}

.hero img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.75);
}

/* ==========================
   SEÇÃO PROCESSO
=========================== */
.process-section {
    padding: 84px 0;
    background: linear-gradient(180deg, #0b0b10, #0f0f16);
}

.process-section h2 {
    font-size: 36px;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.process-card {
    background: #121217;
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.process-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--bf-gold);
}

.process-card p {
    font-size: 15px;
    color: rgba(220, 210, 255, 0.85);
    line-height: 1.6;
}

/* ==========================
   SEÇÃO DE RECURSOS (Features)
=========================== */
.features-section {
    background: #0d0d12;
    padding: 76px 0;
}

.features-section h2 {
    font-size: 34px;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    background: #15151b;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(111, 66, 193, 0.18), 0 0 18px var(--bf-card-glow);
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--bf-primary);
}

.feature-box p {
    font-size: 15px;
    color: rgba(220, 210, 255, 0.8);
}

/* ==========================
   CTA - Chamada para Ação
=========================== */
.cta {
    background: linear-gradient(180deg, var(--bf-primary), var(--bf-primary-dark));
    padding: 70px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
}

.cta p {
    font-size: 18px;
    margin: 12px 0 22px;
}

.cta a {
    display: inline-block;
    padding: 14px 28px;
    background: var(--bf-gold);
    color: #000;
    border-radius: var(--radius);
    font-weight: 900;
    transition: all .3s ease;
    box-shadow: 0 12px 30px rgba(212, 167, 44, 0.25);
}

.cta a:hover {
    background: var(--bf-gold-dark);
    transform: scale(1.04) translateY(-2px);
    text-decoration: none;
}

/* ============================================
   HERO DE HOSPEDAGEM
============================================ */
.hosting-hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0710, #1a1220);
    color: white;
    position: relative;
    overflow: hidden;
}

.hosting-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 28%, rgba(247, 201, 72, 0.12), transparent 30%);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hosting-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hosting-hero h1 {
    font-size: 46px;
    font-weight: 900;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hosting-hero p {
    margin-top: 20px;
    font-size: 19px;
    color: rgba(230, 220, 255, 0.9);
}

.hosting-hero img {
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.6);
}

/* ============================================
   FEATURES AVANÇADAS
============================================ */
.hosting-features {
    padding: 80px 0;
    background: #0f0f14;
}

.hosting-features h2 {
    font-size: 36px;
    font-weight: 900;
}

.features-grid-advanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-adv {
    background: #14131a;
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: .3s;
    color: #efeaff;
}

.feature-adv:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.7), 0 0 20px var(--bf-card-glow);
}

.feature-adv h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bf-gold);
}

.feature-adv p {
    font-size: 15px;
    color: rgba(230, 220, 255, 0.9);
}


/* ============================================
   PLANOS DE HOSPEDAGEM (plan-card)
============================================ */
.plan-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.plan-card {
    float: left;
    background: linear-gradient(180deg, #0f0f15, #14121c);
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all .35s ease;
    position: relative;
    color: #fff;
    width: 33%;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(111, 66, 193, 0.4), 0 0 20px rgba(111, 66, 193, 0.4);
    border-color: var(--bf-primary);
}

.plan-card.recommended {
    border: 2px solid var(--bf-primary) !important;
}

.plan-card.recommended::before {
    content: "Recomendado";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bf-gold);
    color: #000;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(212, 167, 44, 0.25);
}

.plan-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin: 15px 0;
    color: var(--bf-gold);
    letter-spacing: -0.5px;
}

.plan-price small {
    font-size: 18px;
    color: var(--muted);
    font-weight: 500;
}

.plan-desc {
    font-size: 17px;
    color: rgba(230, 220, 255, 0.9);
    text-align: center;
    margin-bottom: 25px;
}

.plan-features {
    margin-top: 15px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 16px;
    color: rgba(220, 210, 255, 0.9);
}

.plan-features li i {
    font-size: 20px;
    color: var(--success); /* Ícones verdes */
}

.plan-btn {
    display: block;
    margin: 30px auto 0;
    text-align: center;
    padding: 14px 25px;
    background: linear-gradient(90deg, var(--bf-primary), var(--bf-primary-dark));
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: .3s ease;
    width: 100%;
    border: none;
}

.plan-btn:hover {
    background: linear-gradient(90deg, var(--bf-primary-dark), #3b256d);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(111, 66, 193, 0.45);
}

/* ============================================
   SEÇÃO DATACENTER / SERVIDORES NO BRASIL
============================================ */
.datacenter-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0b0b0f, #0f0f16);
}

.datacenter-section h2 {
    font-size: 36px;
    font-weight: 900;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.infra-box {
    background: linear-gradient(180deg, #121217, #191826);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: .3s;
    color: #efeaff;
}

.infra-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.7);
}

.infra-box h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--bf-gold);
}

.infra-box p {
    font-size: 15px;
    color: rgba(230, 220, 255, 0.9);
    line-height: 1.5;
}


/* ============================================
   E-MAIL PROFISSIONAL
============================================ */
.email-section {
    padding: 80px 0;
    background: #0f0f14;
}

.email-section h2 {
    font-size: 34px;
    font-weight: 900;
}

.email-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.email-box {
    background: #15151b;
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
    transition: .3s;
    color: #efeaff;
}

.email-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.7);
}

.email-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--bf-primary);
}

.email-box p {
    color: rgba(230, 220, 255, 0.9);
    font-size: 15px;
}


/* ============================================
   CRIADOR DE SITES (Website Builder)
============================================ */
.creator-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #15121a, #0f0f14);
}

.creator-section h2 {
    font-size: 36px;
    font-weight: 900;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.creator-box {
    background: #17161b;
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: .3s;
    color: #efeaff;
}

.creator-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.7);
}

.creator-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bf-primary);
}

.creator-box p {
    font-size: 15px;
    color: rgba(230, 220, 255, 0.9);
}


/* ============================================
   TABELA DE COMPARAÇÃO
============================================ */
.comparison-table {
    margin-top: 50px;
    width: 100%;
    border-collapse: collapse;
    background: #121217;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

.comparison-table thead {
    background: linear-gradient(90deg, var(--bf-primary), var(--bf-primary-dark));
    color: white;
}

.comparison-table th {
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
}

.comparison-table td {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: rgba(240, 235, 255, 0.95);
}

.comparison-table tr:hover td {
    background: rgba(111, 66, 193, 0.06);
}


/* ============================================
   GRID DE BENEFÍCIOS (info-grid)
============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.info-item {
    background: #15151b;
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: .3s;
    color: #efeaff;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.info-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bf-primary);
}

.info-item p {
    font-size: 15px;
    color: rgba(230, 220, 255, 0.9);
}

/* -------------------------------------------------------------------
   RESPONSIVIDADE GERAL
   ------------------------------------------------------------------- */
@media (max-width: 1000px) {
    /* Layouts de 2 ou 3 colunas viram 1 */
    .hero .container,
    .hosting-hero .container,
    .process-grid,
    .features-grid,
    .features-grid-advanced,
    .datacenter-grid,
    .email-grid,
    .creator-grid,
    .info-grid,
    .plan-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero, .hosting-hero, .process-section, .features-section, .hosting-features, .email-section, .creator-section {
        padding: 50px 0;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .hero h1, .hosting-hero h1 {
        font-size: 40px;
        text-align: center;
    }

    .hero p, .hosting-hero p {
        text-align: center;
    }

    /* Centraliza imagem no Hero em mobile */
    .hero .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    /* Centraliza botões em mobile */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .features-grid{
        display: block;
    }

    .feature-box,
    .plan-card {
        width: 100%  !important ;
    }
}
