/* --- Variáveis e Reset --- */
:root {
    /* Paleta "RaBot - DayZ Survival Edition" */
    
    /* COR PRINCIPAL: Mantemos o vermelho da logo */
    --primary: #e73a3e;       
    --primary-hover: #c13034; 
    
    /* NOVOS FUNDOS: Tons de Marrom/Terra Escura */
    --bg-dark: #120f0d;       /* Marrom Quase Preto (Terra Queimada) */
    --bg-card: #1f1a16;       /* Marrom Café Escuro (Madeira Velha/Couro) */
    
    /* TEXTO */
    --text-light: #f5f0eb;    /* Branco "Sujo" (Off-white/Papel Velho) */
    --text-gray: #a89f91;     /* Cinza Bege (Areia Escura) */
    
    /* DETALHES */
    --accent-green: #6d7e5f;  /* Verde Oliva (Militar/Zumbi) */
    --border-color: #382e28;  /* Marrom Médio para bordas sutis */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Seleção de texto vermelha */
::selection { background: var(--primary); color: white; }

body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; }

/* --- Header Estilo "Bunker Tático" --- */
header { 
    padding: 10px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    
    /* FUNDO: Um padrão listrado muito sutil e escuro (Estilo Fibra/Militar) */
    background-color: #0f0c0a; 
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 8px
    );
    
    /* BLUR */
    backdrop-filter: blur(10px); 
    
    /* BORDA: Vermelho Sangue Brilhante (Neon/Laser) */
    border-bottom: 2px solid var(--primary); 
    box-shadow: 0 4px 15px rgba(231, 58, 62, 0.3); 
}

.logo-link { display: flex; align-items: center; }

.logo-img {
    height: 80px; 
    width: auto;
    transition: transform 0.3s;
    border-radius: 25px; /* Mantido conforme seu ajuste */
}

.logo-img:hover { transform: scale(1.05); }

nav a { color: var(--text-light); text-decoration: none; margin-left: 20px; font-weight: 500; transition: 0.3s; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
nav a:hover { color: var(--primary); }

/* --- Hero Section (2 Colunas) --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 60px;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

/* Fundo com imagem apocalipse/zumbi e overlay escuro */
.hero-bg {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #120f0de6 60%, #3f1416cc 100%);
    z-index: 1;
}
.hero-content, .hero-image { position: relative; z-index: 2; }

/* Coluna da Esquerda (Texto) */
.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    color: var(--text-light);
    text-shadow: 0 2px 16px #000a;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(231, 58, 62, 0.35);
    background: rgba(16, 12, 10, 0.72);
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    box-shadow: 0 0 24px rgba(231, 58, 62, 0.12);
}

.hero-logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    padding: 14px 18px 14px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(18, 15, 13, 0.98), rgba(41, 33, 28, 0.96));
    border: 1px solid rgba(231, 58, 62, 0.82);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.52), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    max-width: 100%;
}

.dayz-logo-mark {
    display: block;
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)) brightness(0) invert(1);
}

.hero-logo-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding-right: 6px;
}

.hero-logo-copy strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-logo-copy span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 0px 4px 20px #000c;
    letter-spacing: 1px;
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 700;
}

/* Destaque vermelho no texto */
.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(231, 58, 62, 0.4);
}

.hero p { 
    font-size: 1.2rem; 
    color: var(--text-gray); 
    margin-bottom: 40px; 
}

/* Botões lado a lado */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-support {
    max-width: 540px;
    margin-top: 18px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Botão Principal */
.btn { 
    padding: 15px 40px; 
    background-color: var(--primary); 
    color: white; 
    border: none; 
    border-radius: 4px; 
    font-size: 1rem; 
    cursor: pointer; 
    font-weight: bold; 
    transition: 0.3s; 
    text-decoration: none; 
    display: inline-block; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover { 
    background-color: var(--primary-hover); 
    transform: scale(1.05); 
    box-shadow: 0 0 20px rgba(231, 58, 62, 0.4); 
}

/* Botão Secundário (Transparente) */
.btn-outline {
    padding: 15px 40px; 
    background-color: transparent; 
    color: var(--text-light); 
    border: 2px solid var(--border-color); 
    border-radius: 4px; 
    font-size: 1rem; 
    cursor: pointer; 
    font-weight: bold; 
    transition: 0.3s; 
    text-decoration: none; 
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block; /* Garante que comporte como botão */
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Coluna da Direita (Imagem) */
.hero-image {
    flex: 1; 
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 430px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0 0 40px #e73a3e55, 0 20px 50px #000a;
    border: 3px solid rgba(231, 58, 62, 0.65);
    background: rgba(31, 26, 22, 0.82);
    padding: 22px;
    transform-origin: center center;
    animation: floatErratic 9s ease-in-out infinite;
    object-fit: contain;
}

.hero-main-logo {
    display: block;
    object-fit: contain;
}
/* Preço - dica de fundo */
.pricing-bg-hint {
    text-align: center;
    color: var(--primary);
    margin-top: 18px;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.5px;
}
/* Footer social */
.footer-social {
    margin-top: 18px;
}
.footer-social a {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}
.footer-social a:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes floatErratic {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    12% { transform: translate(10px, -8px) rotate(0.8deg) scale(1.01); }
    24% { transform: translate(-12px, 6px) rotate(-1deg) scale(0.995); }
    38% { transform: translate(14px, 4px) rotate(1.1deg) scale(1.01); }
    52% { transform: translate(-7px, -14px) rotate(-0.7deg) scale(1.005); }
    66% { transform: translate(12px, 9px) rotate(0.9deg) scale(1.01); }
    82% { transform: translate(-10px, 2px) rotate(-0.8deg) scale(0.998); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* --- Features --- */
.section { padding: 80px 10%; scroll-margin-top: 100px; }
.section-title { text-align: center; margin-bottom: 60px; font-size: 2.5rem; color: var(--text-light); }

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

.card { 
    background: var(--bg-card); 
    padding: 30px; 
    border-radius: 8px; 
    border: 1px solid var(--border-color); 
    transition: 0.3s; 
}

.card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.card h3 { margin-bottom: 15px; color: var(--primary); font-size: 1.4rem; }

.featured-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(231, 58, 62, 0.12), rgba(31, 26, 22, 0.98));
    border: 1px solid rgba(231, 58, 62, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.featured-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.featured-card-lead {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.featured-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.featured-features-list li {
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.featured-features-list li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    flex: 0 0 auto;
}

/* --- Pricing --- */
.pricing-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }

.price-card { 
    background: var(--bg-card); 
    padding: 40px; 
    border-radius: 8px; 
    text-align: center; 
    border: 1px solid var(--border-color); 
    width: 300px; 
    position: relative; 
    transition: 0.3s;
}

.price-card:hover { border-color: var(--text-gray); }

.price-card.popular { 
    border: 2px solid var(--primary); 
    transform: scale(1.05); 
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(231, 58, 62, 0.1) 100%);
}

.price-card.popular::after { 
    content: "Recomendado"; 
    position: absolute; 
    top: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--primary); 
    color: white;
    padding: 5px 15px; 
    border-radius: 4px; 
    font-size: 0.8rem; 
    font-weight: bold; 
    text-transform: uppercase;
}

.price { font-size: 2.5rem; font-weight: bold; margin: 20px 0; color: var(--text-light); }
.price span { font-size: 1rem; color: var(--text-gray); font-weight: normal; }

.features-list { list-style: none; margin-bottom: 30px; text-align: left; }
.features-list li { margin-bottom: 10px; color: var(--text-gray); display: flex; align-items: center; }

/* Checkmark VERDE OLIVA */
.features-list li::before { 
    content: "✓"; 
    color: var(--accent-green); 
    font-weight: bold;
    margin-right: 10px; 
    font-size: 1.2rem;
}

/* --- Footer --- */
footer { 
    text-align: center; 
    padding: 40px; 
    border-top: 1px solid var(--border-color); 
    color: var(--text-gray); 
    margin-top: 50px; 
    font-size: 0.9rem;
}

/* --- Responsividade --- */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { text-align: center; margin-bottom: 40px; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 2.1rem; }
    .logo-img { height: 60px; }
    nav { display: none; }
    .hero-image img { max-width: 270px; }
    .hero-logo-lockup {
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 24px;
        white-space: normal;
    }
    .hero-logo-copy { align-items: center; text-align: center; }
    .hero-logo-copy span { white-space: normal; text-align: center; }
    .dayz-logo-mark { width: 124px; }
    .hero-support { margin-left: auto; margin-right: auto; }
    .featured-features-list { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}