/* ==========================================================================
   CONFIGURAÇÕES BASE & CORES OFICIAIS UP GAMES (VERMELHO E PRETO)
   ========================================================================== */
body {
    background-color: #f8f9fa;
    color: #212529; /* Texto escuro principal */
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #cc0000; /* Vermelho Oficial nos Títulos */
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================================================
   ELEMENTOS DE CONVERSÃO (BOTÕES EM VERMELHO DE DESTAQUE)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
    cursor: pointer;
}
.btn:hover {
    opacity: 0.9;
}

/* ==========================================================================
   HEADER / TOPO (Fundo branco para encaixar o logo perfeitamente)
   ========================================================================== */
.header {
    background-color: #ffffff; /* Fundo branco limpo para o logo-loja.jpg */
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* Sombra leve para separar do conteúdo */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-topo {
    height: 55px; /* Altura ideal ajustada para a proporção do seu logo */
    width: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.btn-header {
    background-color: transparent;
    color: #cc0000; /* Texto do botão do topo em vermelho */
    border: 2px solid #cc0000;
    font-size: 14px;
}

/* HERO SECTION / DESTAQUE COM DEGRADÊ EM PRETO E GRAFITE */
.hero {
    /* Fundo escuro focado no preto/grafite para dar contraste ao texto branco e botões vermelhos */
    background: linear-gradient(rgba(16, 17, 19, 0.92), rgba(35, 37, 40, 0.92)), url('https://images.unsplash.com/photo-1601524909162-be87252be298?q=80&w=1200') no-repeat center center/cover;
    padding: 150px 0 80px 0;
    color: #ffffff;
    text-align: center;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    background-color: #cc0000; /* Botão principal Vermelho Intermitente */
    color: #ffffff;
    font-size: 17px;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

/* ==========================================================================
   SEÇÕES DE CONTEÚDO
   ========================================================================== */

/* SERVIÇOS */
.services {
    padding: 60px 0;
    background-color: #ffffff;
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    background: #f8f9fa;
    padding: 35px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eef0f2;
    width: 100%;
    max-width: 260px;
    box-sizing: border-box;
}

.service-card .icon {
    font-size: 35px;
    color: #cc0000; /* Ícones em Vermelho */
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #101113;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* DIFERENCIAIS (Fundo Preto/Grafite com detalhes em Vermelho) */
.features {
    background-color: #161713; 
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.features .section-title {
    color: #ffffff;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.icon-feat {
    font-size: 30px;
    color: #cc0000; /* Destaque dos diferenciais em Vermelho */
    margin-bottom: 10px;
}

.feature-item h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

/* LOCALIZAÇÃO */
.location {
    padding: 60px 0;
}

.location-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.location-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.location-text p {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
}

.location-text .address {
    font-size: 17px;
    color: #cc0000;
    margin: 20px 0;
    font-weight: bold;
}

.btn-location {
    background-color: #161713;
    color: #ffffff;
    font-size: 15px;
}
.btn-location:hover {
    background-color: #cc0000;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 320px;
    width: 100%;
    max-width: 550px;
    flex: 1;
    min-width: 300px;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background-color: #ffffff;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    text-align: left;
    border: 1px solid #eef0f2;
}

.faq-item strong {
    display: block;
    font-size: 16px;
    color: #161713;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* FOOTER */
.footer {
    background-color: #101113;
    color: rgba(255,255,255,0.6);
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

.footer p {
    margin-bottom: 5px;
}

/* WHATSAPP FLUTUANTE (Verde oficial para manter a conversão instantânea) */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 999;
    text-decoration: none;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE PARA CELULARES)
   ========================================================================== */
@media (max-width: 768px) {
    .hero {
        padding: 130px 0 50px 0;
    }
    .hero-content h2 {
        font-size: 26px;
    }
    .section-title {
        font-size: 22px;
    }
    .service-card, .feature-item, .location-text, .location-map {
        max-width: 100%;
        flex: none;
    }
    .location-map {
        height: 260px;
    }
    .btn-location, .btn-hero {
        display: block;
        text-align: center;
    }
}