/* ============================================================
   Domínio Web Hospedagem — CSS Tema Azul Escuro
   ============================================================ */

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

.dwh-wrapper {
    --dwh-primary: #6C3CE1;
    --dwh-primary-dark: #5228C0;
    --dwh-primary-light: #8B5CF6;
    --dwh-accent: #F59E0B;
    --dwh-success: #10B981;
    --dwh-bg-dark: #0F0B2A;
    --dwh-bg-section: #13103A;
    --dwh-bg-card: #1A1650;
    --dwh-bg-card-hover: #221E5E;
    --dwh-text-white: #FFFFFF;
    --dwh-text-light: #C4B5FD;
    --dwh-text-muted: #9CA3AF;
    --dwh-border: rgba(139,92,246,0.2);
    --dwh-gradient: linear-gradient(135deg, #6C3CE1 0%, #3B82F6 50%, #06B6D4 100%);
    --dwh-gradient-btn: linear-gradient(135deg, #6C3CE1 0%, #8B5CF6 100%);
    --dwh-shadow: 0 25px 50px rgba(0,0,0,0.25);
    --dwh-shadow-hover: 0 20px 40px rgba(108,60,225,0.15);
    --dwh-radius: 16px;
    --dwh-radius-sm: 10px;
    --dwh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--dwh-font);
    color: var(--dwh-text-white);
    background: var(--dwh-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.dwh-wrapper a { text-decoration: none; color: inherit; }
.dwh-wrapper ul { list-style: none; }

/* === CONTAINER === */
.dwh-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === BOTÕES === */
.dwh-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-family: var(--dwh-font);
    font-size: 16px; font-weight: 600; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1); border: none; outline: none;
}
.dwh-btn-primario {
    background: var(--dwh-gradient-btn); color: #fff;
    box-shadow: 0 8px 30px rgba(108,60,225,0.4);
}
.dwh-btn-primario:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,60,225,0.6); }
.dwh-btn-secundario {
    background: transparent; color: var(--dwh-primary-light); border: 2px solid var(--dwh-border);
}
.dwh-btn-secundario:hover { background: rgba(108,60,225,0.1); border-color: var(--dwh-primary-light); transform: translateY(-2px); }
.dwh-btn-grande { padding: 18px 40px; font-size: 18px; }
.dwh-btn-seta { transition: transform 0.3s; }
.dwh-btn:hover .dwh-btn-seta { transform: translateX(4px); }
.dwh-btn-plano { width: 100%; padding: 16px; }

/* === TEXTO DESTAQUE === */
.dwh-destaque-texto {
    background: var(--dwh-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}

/* === BADGE === */
.dwh-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px;
    background: rgba(108,60,225,0.15); border: 1px solid var(--dwh-border); border-radius: 50px;
    font-size: 14px; font-weight: 500; color: var(--dwh-primary-light); margin-bottom: 24px;
    animation: dwh-fadeInUp 0.6s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.dwh-hero {
    position: relative; padding: 120px 0 100px; overflow: hidden;
    background: radial-gradient(ellipse at 30% 0%, rgba(108,60,225,0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 100%, rgba(59,130,246,0.15) 0%, transparent 50%),
                var(--dwh-bg-dark);
}
.dwh-hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.dwh-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.dwh-shape-1 { width: 500px; height: 500px; background: var(--dwh-primary); top: -150px; left: -100px; animation: dwh-float 8s ease-in-out infinite; }
.dwh-shape-2 { width: 400px; height: 400px; background: #3B82F6; bottom: -100px; right: -80px; animation: dwh-float 10s ease-in-out infinite reverse; }
.dwh-shape-3 { width: 300px; height: 300px; background: #06B6D4; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: dwh-float 12s ease-in-out infinite; }

.dwh-hero-content { text-align: center; position: relative; z-index: 2; }
.dwh-hero-titulo { font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; animation: dwh-fadeInUp 0.8s ease; }
.dwh-hero-subtitulo { font-size: clamp(16px, 2vw, 20px); color: var(--dwh-text-light); max-width: 650px; margin: 0 auto 40px; animation: dwh-fadeInUp 1s ease; }
.dwh-hero-acoes { display: flex; flex-direction: column; align-items: center; gap: 40px; animation: dwh-fadeInUp 1.2s ease; }

.dwh-hero-stats { display: flex; gap: 40px; }
.dwh-stat { display: flex; flex-direction: column; align-items: center; }
.dwh-stat-numero { font-size: 28px; font-weight: 800; background: var(--dwh-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dwh-stat-label { font-size: 13px; color: var(--dwh-text-muted); margin-top: 4px; }

/* ============================================================
   SEÇÕES COMUNS
   ============================================================ */
.dwh-secao { padding: 100px 0; position: relative; }
.dwh-secao-cabecalho { text-align: center; margin-bottom: 60px; }
.dwh-secao-titulo { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 16px; }
.dwh-secao-subtitulo { font-size: 18px; color: var(--dwh-text-light); max-width: 600px; margin: 0 auto; }

/* ============================================================
   TOGGLE MENSAL / ANUAL
   ============================================================ */
.dwh-billing-toggle-container {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 32px;
}
.dwh-billing-label {
    font-size: 16px; font-weight: 600; color: var(--dwh-text-light);
    display: flex; align-items: center; gap: 8px;
}
.dwh-billing-discount {
    background: rgba(16,185,129,0.15); color: #10B981; font-size: 12px;
    font-weight: 700; padding: 3px 10px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.dwh-billing-toggle {
    position: relative; width: 60px; height: 32px; border-radius: 50px;
    background: var(--dwh-bg-card); border: 2px solid var(--dwh-border);
    cursor: pointer; transition: all 0.3s ease; padding: 0;
    outline: none;
}
.dwh-billing-toggle:hover { border-color: var(--dwh-primary-light); }
.dwh-billing-circle {
    position: absolute; top: 3px; left: 3px; width: 22px; height: 22px;
    border-radius: 50%; background: var(--dwh-text-muted);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.dwh-billing-toggle.active { background: var(--dwh-primary); border-color: var(--dwh-primary); }
.dwh-billing-toggle.active .dwh-billing-circle {
    left: calc(100% - 25px); background: #fff;
}
.dwh-preco-valor { transition: opacity 0.2s ease; }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.dwh-beneficios { background: var(--dwh-bg-section); }
.dwh-beneficios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dwh-beneficio-card {
    background: var(--dwh-bg-card); border: 1px solid var(--dwh-border);
    border-radius: var(--dwh-radius); padding: 36px 28px; text-align: center;
    transition: all 0.3s ease;
}
.dwh-beneficio-card:hover {
    background: var(--dwh-bg-card-hover); transform: translateY(-6px);
    box-shadow: var(--dwh-shadow-hover); border-color: var(--dwh-primary-light);
}
.dwh-beneficio-icone { font-size: 48px; margin-bottom: 20px; display: block; }
.dwh-beneficio-titulo { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.dwh-beneficio-desc { font-size: 15px; color: var(--dwh-text-light); line-height: 1.7; }

/* ============================================================
   PLANOS
   ============================================================ */
.dwh-planos-secao {
    background: radial-gradient(ellipse at 50% 0%, rgba(108,60,225,0.12) 0%, transparent 60%), var(--dwh-bg-dark);
}
.dwh-planos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.dwh-plano-card {
    background: var(--dwh-bg-card); border: 1px solid var(--dwh-border);
    border-radius: var(--dwh-radius); padding: 40px 32px; display: flex;
    flex-direction: column; position: relative; transition: all 0.3s ease;
}
.dwh-plano-card:hover { transform: translateY(-8px); box-shadow: var(--dwh-shadow); }

.dwh-plano-destaque {
    border-color: var(--dwh-primary-light);
    background: linear-gradient(180deg, rgba(108,60,225,0.12) 0%, var(--dwh-bg-card) 40%);
    transform: scale(1.04); z-index: 2;
    box-shadow: 0 0 60px rgba(108,60,225,0.2);
}
.dwh-plano-destaque:hover { transform: scale(1.04) translateY(-8px); }

.dwh-plano-selo {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--dwh-gradient-btn); color: #fff; padding: 6px 24px;
    border-radius: 50px; font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; white-space: nowrap; box-shadow: 0 4px 15px rgba(108,60,225,0.4);
}
.dwh-plano-nome { font-size: 24px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.dwh-plano-preco { text-align: center; margin-bottom: 32px; }
.dwh-preco-de { font-size: 15px; color: var(--dwh-text-muted); text-decoration: line-through; display: block; margin-bottom: 4px; }
.dwh-preco-atual { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.dwh-preco-moeda { font-size: 20px; font-weight: 600; color: var(--dwh-primary-light); }
.dwh-preco-valor { font-size: 48px; font-weight: 800; background: var(--dwh-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dwh-preco-periodo { font-size: 16px; color: var(--dwh-text-muted); }

.dwh-plano-recursos { margin-bottom: 32px; flex-grow: 1; }
.dwh-recurso { padding: 10px 0; font-size: 15px; color: var(--dwh-text-light); display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(139,92,246,0.08); }
.dwh-recurso:last-child { border-bottom: none; }
.dwh-recurso-check { color: var(--dwh-success); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.dwh-planos-garantia { text-align: center; margin-top: 40px; font-size: 15px; color: var(--dwh-text-muted); }

/* ============================================================
   DOMÍNIO
   ============================================================ */
.dwh-dominio-secao { background: var(--dwh-bg-section); }
.dwh-dominio-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dwh-dominio-texto .dwh-secao-titulo { text-align: left; }
.dwh-dominio-texto .dwh-secao-subtitulo { text-align: left; margin: 0 0 24px; }
.dwh-dominio-extensoes { display: flex; flex-wrap: wrap; gap: 12px; }
.dwh-extensao {
    padding: 8px 20px; background: var(--dwh-bg-card); border: 1px solid var(--dwh-border);
    border-radius: 50px; font-size: 15px; font-weight: 600; color: var(--dwh-primary-light);
    transition: all 0.3s;
}
.dwh-extensao:hover { background: rgba(108,60,225,0.15); border-color: var(--dwh-primary-light); }

.dwh-dominio-card-visual {
    background: var(--dwh-bg-card); border: 1px solid var(--dwh-border);
    border-radius: var(--dwh-radius); padding: 32px; box-shadow: var(--dwh-shadow);
}
.dwh-dominio-barra {
    display: flex; align-items: center; gap: 12px; padding: 16px 20px;
    background: var(--dwh-bg-dark); border-radius: var(--dwh-radius-sm); margin-bottom: 20px;
}
.dwh-dominio-icone { font-size: 20px; }
.dwh-dominio-exemplo { font-size: 18px; font-weight: 500; color: var(--dwh-text-light); }
.dwh-dominio-resultado { display: flex; flex-direction: column; gap: 8px; }
.dwh-dominio-disponivel { font-size: 18px; font-weight: 700; color: var(--dwh-success); }
.dwh-dominio-gratis { font-size: 14px; font-weight: 600; color: var(--dwh-accent); text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   SEGURANÇA
   ============================================================ */
.dwh-seguranca-secao {
    background: radial-gradient(ellipse at 50% 100%, rgba(108,60,225,0.1) 0%, transparent 60%), var(--dwh-bg-dark);
}
.dwh-seguranca-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dwh-seguranca-item {
    background: var(--dwh-bg-card); border: 1px solid var(--dwh-border); border-radius: var(--dwh-radius);
    padding: 32px 24px; text-align: center; transition: all 0.3s ease;
}
.dwh-seguranca-item:hover { transform: translateY(-4px); border-color: var(--dwh-primary-light); }
.dwh-seguranca-icone { font-size: 40px; margin-bottom: 16px; display: block; }
.dwh-seguranca-titulo { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.dwh-seguranca-desc { font-size: 14px; color: var(--dwh-text-light); line-height: 1.7; }

/* ============================================================
   FAQ
   ============================================================ */
.dwh-faq-secao { background: var(--dwh-bg-section); }
.dwh-faq-lista { max-width: 800px; margin: 0 auto; }
.dwh-faq-item {
    border: 1px solid var(--dwh-border); border-radius: var(--dwh-radius-sm);
    margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s;
}
.dwh-faq-item:hover { border-color: var(--dwh-primary-light); }
.dwh-faq-item.dwh-faq-aberto { border-color: var(--dwh-primary-light); }

.dwh-faq-pergunta {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; background: var(--dwh-bg-card); border: none; color: var(--dwh-text-white);
    font-family: var(--dwh-font); font-size: 16px; font-weight: 600; cursor: pointer;
    text-align: left; transition: background 0.3s;
}
.dwh-faq-pergunta:hover { background: var(--dwh-bg-card-hover); }
.dwh-faq-icone { flex-shrink: 0; transition: transform 0.3s ease; color: var(--dwh-primary-light); }
.dwh-faq-aberto .dwh-faq-icone { transform: rotate(180deg); }
.dwh-faq-resposta { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.dwh-faq-resposta p { padding: 0 24px 20px; font-size: 15px; color: var(--dwh-text-light); line-height: 1.8; }
.dwh-faq-aberto .dwh-faq-resposta { max-height: 300px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.dwh-cta-final {
    background: radial-gradient(ellipse at 50% 50%, rgba(108,60,225,0.2) 0%, transparent 70%), var(--dwh-bg-dark);
}
.dwh-cta-final-content { text-align: center; max-width: 700px; margin: 0 auto; }
.dwh-cta-final-titulo { font-size: clamp(30px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; }
.dwh-cta-final-texto { font-size: 18px; color: var(--dwh-text-light); margin-bottom: 40px; }
.dwh-cta-selos { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.dwh-selo-item { font-size: 14px; color: var(--dwh-text-muted); display: flex; align-items: center; gap: 6px; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.dwh-rodape { padding: 40px 0; border-top: 1px solid var(--dwh-border); text-align: center; }
.dwh-rodape-texto { font-size: 14px; color: var(--dwh-text-muted); }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes dwh-fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes dwh-float { 0%,100%{transform:translate(0,0)} 33%{transform:translate(30px,-30px)} 66%{transform:translate(-20px,20px)} }
.dwh-animar { opacity:0; transform:translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.dwh-animar.dwh-visivel { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 992px) {
    .dwh-hero { padding: 80px 0 60px; }
    .dwh-beneficios-grid, .dwh-seguranca-grid { grid-template-columns: repeat(2, 1fr); }
    .dwh-planos-grid { grid-template-columns: repeat(2, 1fr); }
    .dwh-plano-destaque { transform: scale(1); }
    .dwh-plano-destaque:hover { transform: translateY(-8px); }
    .dwh-plano-card:nth-child(3) { grid-column: 1 / -1; max-width: 400px; justify-self: center; width: 100%; }
    .dwh-dominio-content { grid-template-columns: 1fr; gap: 40px; }
    .dwh-dominio-texto .dwh-secao-titulo, .dwh-dominio-texto .dwh-secao-subtitulo { text-align: center; }
    .dwh-dominio-extensoes { justify-content: center; }
}

@media (max-width: 640px) {
    .dwh-hero { padding: 60px 0 50px; }
    .dwh-secao { padding: 60px 0; }
    .dwh-container { padding: 0 16px; }
    .dwh-beneficios-grid, .dwh-planos-grid, .dwh-seguranca-grid { grid-template-columns: 1fr; }
    .dwh-plano-card:nth-child(3) { max-width: none; }
    .dwh-hero-stats { gap: 24px; }
    .dwh-stat-numero { font-size: 22px; }
    .dwh-btn-grande { padding: 16px 32px; font-size: 16px; }
    .dwh-cta-selos { flex-direction: column; align-items: center; gap: 12px; }
    .dwh-faq-pergunta { padding: 16px 18px; font-size: 15px; }
    .dwh-faq-resposta p { padding: 0 18px 16px; font-size: 14px; }
    .dwh-dominio-card-visual { padding: 20px; }
}
