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

html, body {
    max-width: 100%;
    overflow-x: hidden; /* Corta qualquer conteúdo que queira sair pela direita */
    position: relative;
}

body {
    background-color: #121212;
    color: white;
    overflow-x: hidden;
}

.navbar {
    background-color: #1a1a1a;
    padding: 10px 5%;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img { height: 40px; }

/* Menu Desktop */
.menu ul { display: flex; list-style: none; }
.menu ul li { margin: 0 15px; }
.menu ul li a { color: #ccc; text-decoration: none; font-weight: 500; transition: 0.3s; }
.menu ul li a:hover { color: #007bff; }

.header-actions { display: flex; align-items: center; gap: 15px; }

/* Busca */
.search-box {
    display: flex;
    background: #333;
    padding: 5px 12px;
    border-radius: 20px;
}
.search-box input { background: transparent; border: none; color: white; outline: none; width: 150px; }
.search-box button { background: transparent; border: none; color: #888; cursor: pointer; }
.search-toggle { display: none; background: none; border: none; color: white; font-size: 18px; cursor: pointer; }

/* Carrinho e Login */
.cart-icon { position: relative; font-size: 20px; cursor: pointer; }
.cart-count { position: absolute; top: -8px; right: -8px; background: #007bff; font-size: 10px; padding: 2px 6px; border-radius: 50%; }
.btn-login { border: 1px solid #fff; color: #fff; padding: 6px 15px; border-radius: 5px; text-decoration: none; font-size: 14px; }

/* Overlay (Fundo escuro ao abrir menu) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 998;
}

/* --- RESPONSIVIDADE --- */
.mobile-menu-icon { display: none; cursor: pointer; font-size: 22px; z-index: 1001; }
.mobile-only { display: none; }

.pixel-text {
    font-family: 'Press Start 2P', cursive;
    /* Essa fonte tem o estilo pixelado da sua imagem */
}

/* PIXEL HERO SECTION */
.hero.pixel-hero {
    position: relative;
    height: 90vh; /* Altura de 90% da tela */
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Fundo gradiente inspirado na sua imagem */
    background: radial-gradient(circle at center, #1b0042 0%, #0d0124 100%);
    overflow: hidden;
    color: #fff;
}

/* Imagem decorativa de fundo */
.hero-decor-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.3; /* A imagem fica mais fraca para dar destaque ao texto real */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Fica acima da imagem decorativa */
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Textos e Títulos */
.hero-supra-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 10px;
}

.hero-main-title {
    font-size: 4rem; /* Tamanho grande para desktop */
    margin-bottom: 20px;
    line-height: 1.2;
    /* Gradiente pixelado simulado (inspirado na imagem) */
    background: linear-gradient(180deg, #e63947 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 0px #000;
}

.hero-description {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 50px;
    max-width: 650px;
}

/* BOTÃO PRINCIPAL (Estilo Glow Gamer) */
.btn-primary {
    background: linear-gradient(135deg, #e94560, #ff007f);
    color: #fff;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 0 25px rgba(233, 69, 96, 0.5);
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.8);
}

/* Container Principal da Vitrine */
.showcase {
    display: flex;
    flex-direction: column; /* Força um item abaixo do outro */
    width: 100%;
    padding: 60px 20px;
}

/* Cabeçalho: Título e Link */
.showcase-header {
    width: 100%; /* Garante que o título ocupe a largura total */
    margin-bottom: 20px;
}

.title-wrapper {
    display: flex;
    justify-content: space-between; /* Título na esquerda, Ver Todos na direita */
    align-items: center;
    width: 100%;
}

.showcase-header h2 span { color: #00d4ff; }

.view-all {
    color: #888;
    font-size: 0.9rem;
    transition: 0.3s;
}

.view-all:hover { color: #00d4ff; }

/* Barra de Filtros */
.filter-bar {
    width: 100%; /* Garante que os filtros ocupem a largura total */
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 5px;
    overflow-x: auto; /* Scroll lateral se for celular */
}

.filter-btn {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #888;
    white-space: nowrap;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
}

.filter-btn.active {
    border-color: #00d4ff;
    color: #fff;
    background: rgba(0, 212, 255, 0.1);
}

.filter-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* O Grid de Jogos - Agora ele obrigatoriamente começa abaixo dos filtros */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no PC */
    gap: 25px;
    width: 100%;
}

/* Ajuste dos Cards para não ficarem esmagados */
.game-card {
    background: #151518;
    border: 1px solid #25252b;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Define uma largura base; o grid se encarregará do resto */
    width: 100%; 
    transition: transform 0.3s ease;
}

.game-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.badge-platform i{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 16px;
}

.game-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantém o quadrado perfeito 1080x1080 proporcionalmente */
    object-fit: cover; /* Garante que a arte do jogo preencha tudo sem distorcer */
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a capa preencha o quadrado sem distorcer */
}

.game-info {
    padding: 15px;
    background: #151518;
}

.price-box {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
}

.old-price { text-decoration: line-through; color: #666; font-size: 0.8rem; }
.current-price { color: #00ff88; font-size: 1.2rem; font-weight: bold; }

.btn-buy-card {
    display: block;
    background: #00d4ff;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

/* Sidebar do Carrinho */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Começa escondido */
    width: 350px;
    height: 100vh;
    background: #121212;
    border-left: 2px solid #00d4ff; /* Azul Neon */
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Quando o carrinho estiver aberto */
.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.cart-header h2 { color: #fff; margin: 0; font-size: 1.5rem; }

.btn-close {
    background: none;
    border: none;
    color: #00d4ff;
    font-size: 2rem;
    cursor: pointer;
}

#cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    margin-top: 20px;
}

.cart-footer {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.total-box {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

#cart-total { color: #00ff88; font-weight: bold; }

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #00d4ff;
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

/* Container de cada jogo no carrinho */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    position: relative;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #333;
}

.item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-info h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.item-info span {
    color: #00ff88;
    font-weight: bold;
}

/* Botão de remover (Lixeira) */
.btn-remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.2s;
    padding: 5px;
}

.btn-remove-item:hover {
    color: #fff;
    transform: scale(1.1);
}

/* PLACEHOLDER */
.game-card.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    border: 1px dashed #333;
    color: #444;
}

/* Container Geral da Barra de Confiança */
.trust-bar {
    background-color: #1f1f1f;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 40px 0;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 28px;
    color: #00d4ff;
}

/* Textos */
.trust-text h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 600;
}

.trust-text p {
    color: #aaa;
    font-size: 13px;
    margin: 0;
}

.newsletter {
    background: linear-gradient(90deg, #1a1a1a 0%, #111 100%);
    padding: 60px 0;
    border-top: 2px solid #00d4ff;
    margin-top: 50px;
}

.news-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.news-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.news-content i {
    font-size: 3rem;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.news-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.news-text p {
    color: #888;
}

.news-form {
    flex: 1;
    max-width: 500px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.news-form input {
    flex: 1;
    background: #252525;
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.news-form input:focus {
    border-color: #00d4ff;
}

.news-form button {
    background: #00d4ff;
    color: #000;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.news-form button:hover {
    background: #00b4db;
    transform: scale(1.02);
}

.news-response {
    margin-top: 10px;
    font-size: 0.9rem;
    min-height: 20px;
}

/* --- BARRA DE INFORMAÇÕES (DIFERENCIAIS) --- */
.info-bar {
    background-color: #161616; /* Fundo um pouco mais claro que o preto puro */
    padding: 30px 5%;
    border-bottom: 1px solid #222;
    width: 100%;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1; /* Faz os itens dividirem o espaço igualmente */
}

.info-icon {
    font-size: 28px;
    color: #00f2ff; /* Azul neon conforme a imagem */
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
}

.info-text p {
    color: #888;
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
}

/* --- NEWSLETTER --- */
.newsletter {
    background-color: #161616;
    padding: 50px 8%;
    border-top: 1px solid #222;
    border-bottom: 3px solid #00f2ff; /* Linha fina azul no topo ou base como no modelo */
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 40px;
    color: #00f2ff;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
}

.newsletter-text h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

.newsletter-text p {
    color: #888;
    font-size: 15px;
}

/* Formulário */
.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    background: #222;
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.newsletter-form input:focus {
    border-color: #00f2ff;
}

.btn-notify {
    background: #00f2ff;
    color: #000;
    border: none;
    padding: 0 25px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-notify:hover {
    background: #00b3bd;
    transform: translateY(-2px);
}

/* --- SEÇÃO DE SUPORTE --- */
.support-section {
    background-color: #0d0d0d;
    padding: 80px 5%;
    width: 100%;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.support-header h2 span {
    color: #00f2ff;
}

.support-header p {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Suporte */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas no desktop */
    gap: 30px;
}

/* Cards */
.support-card {
    background-color: #161616;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    border-color: #00f2ff;
    transform: translateY(-10px);
}

.support-icon {
    font-size: 45px;
    color: #00f2ff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.2));
}

.support-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.support-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Garante que os botões fiquem alinhados se o texto variar */
}

/* Botão do Card */
.btn-support {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #00f2ff;
    color: #00f2ff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    width: 100%;
}

.btn-support:hover {
    background-color: #00f2ff;
    color: #000;
}

/* --- RODAPÉ --- */
.main-footer {
    background-color: #0a0a0a; /* Preto mais profundo que as outras seções */
    padding: 60px 8% 20px;
    color: #fff;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Coluna da logo é maior */
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 600;
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span { color: #00f2ff; }

.footer-col p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: #00f2ff; padding-left: 5px; }

/* Ícones Sociais */
.social-icons { display: flex; gap: 15px; }
.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.social-icons a:hover { color: #00f2ff; }

/* Pagamentos */
.payment-methods {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    font-size: 24px;
    color: #ccc;
}

/* Copyright */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-bottom p {
    color: #444;
    font-size: 12px;
}

/* RESPONSIVIDADE VITRINE */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no Tablet */
    }
}

/* RESPONSIVIDADE PIXEL HERO */
/* RESPONSIVIDADE (TABLET E CELULAR) */
@media (max-width: 992px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    .mobile-menu-icon { display: block; }

    /* Menu Lateral */
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        padding-top: 80px;
        transition: 0.4s;
        z-index: 999;
    }
    .menu.active { right: 0; }
    .menu ul { flex-direction: column; align-items: center; }
    .menu ul li { margin: 15px 0; }
    
    .menu-overlay.active { display: block; }

    /* Busca vira ícone no Mobile */
    .search-toggle { display: block; }
    .search-box {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #222;
        border-radius: 0;
        padding: 10px;
    }
    .search-box.active { display: flex; }
    .search-box input { width: 100%; }

    .hero-main-title {
        font-size: 3rem;
    }

    /* No Tablet, já começamos a empilhar para não esmagar o texto */
    .news-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .news-content {
        flex-direction: column; /* Ícone em cima do texto */
        text-align: center;
    }

    .input-group {
        flex-direction: column !important;  
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }

    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 colunas no tablet */
    }
    .footer-col.about {
        grid-column: span 2; /* Logo ocupa a largura toda no tablet */
    }
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        background-color: #1a1a1a;
        width: 100%;
        height: calc(100vh - 75px);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
        border-top: 1px solid #333;
    }

    .nav-links.active {
        right: 0;
    }

    .search-box {
        display: none; display: none; /* Esconde busca no mobile para limpar o topo, ou pode mover para dentro do menu */
    }

    .hero.pixel-hero {
        height: 70vh;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-supra-title {
        font-size: 1rem;
    }

    .hero-decor-img {
        min-width: 150%;
        opacity: 0.2;
    }

    .games-grid {
        grid-template-columns: 1fr; /* 1 coluna no Celular para o card ficar grande */
    }
    
    .title-wrapper {
        flex-direction: column; /* No celular, título em cima do 'ver todos' */
        align-items: flex-start;
        gap: 10px;
    }

    .filter-bar {
        display: flex;
        flex-wrap: wrap;        /* Permite que os botões pulem para a linha de baixo se não couberem */
        justify-content: center; /* Centraliza os botões no meio da tela */
        gap: 10px;               /* Espaçamento entre eles */
        width: 100%;             /* Garante que use a largura total do container */
        margin: 5px auto 20px;          /* Centraliza o bloco todo */
        padding: 0;              /* Remove paddings que possam empurrar para o lado */
    }

    .filter-btn {
        flex: 0 1 auto;          /* Deixa o botão no tamanho do texto, mas permite ajuste */
        padding: 8px 15px;
        font-size: 13px;         /* Reduzi levemente a fonte para caberem mais na mesma linha */
        text-align: center;
        min-width: 80px;         /* Garante um tamanho mínimo legal para o clique */
    }

    /* 3. Esconde a barra de rolagem visual para ficar mais limpo */
    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .trust-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 10%;
        gap: 25px;
    }

    .trust-item i {
        font-size: 24px;
        min-width: 30px;
    }

    .news-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza ícone, textos e form no mobile */
        text-align: center;
    }

    .input-group {
        width: 100%; 
        padding: 0 20px; /* Margem de segurança nas laterais */
    }

    .news-form button {
        padding: 10px;
        justify-content: center;
    }

    /* Garante que o input também acompanhe a centralização */
    #newsEmail {
        width: 100%;
        text-align: center; /* Opcional: centraliza o placeholder/texto digitado */
    }

    .footer-grid { grid-template-columns: 1fr; text-align: center;

    .social-icons, .payment-badges { justify-content: center; }   
}

@media (max-width: 650px) {
    .support-section {
        padding: 50px 20px;
    }

    .support-header h2 {
        font-size: 28px;
    }

    .support-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
        gap: 20px;
    }

    .support-card {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr; /* 1 coluna no Celular */
    }

    .info-bar {
        padding: 40px 20px;
    }
    
    .info-container {
        display: flex;
        flex-direction: column; /* Empilha no celular */
        align-items: flex-start;
        gap: 25px;
    }

    .info-item {
        width: 100%;
    }

    .info-text h3 {
        font-size: 15px;
    }

    .info-text p {
        font-size: 12px;
    }

    .news-container { max-width: 100%; padding: 30px 15px; }
    .btn-notify { 
        padding: 22px; /* Botão fica ainda mais robusto para facilitar o toque */
        font-size: 18px; 
    }

}

/* CELULAR PEQUENO (Abaixo de 480px) */
@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.5rem;
    }

    .btn-primary {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .newsletter {
        padding: 40px 15px;
    }

    .news-text h3 {
        font-size: 22px; /* Diminui o título para não quebrar feio */
        line-height: 1.2;
    }

    .news-text p {
        font-size: 14px;
        max-width: 280px; /* Evita que o texto fique muito largo */
        margin: 0 auto;
    }
    
    .news-icon { font-size: 40px; } /* Ajusta o ícone para telas pequenas */

}}