/*
Theme Name: Gameria
Theme URI: http://localhost/gameria/.site-logo .gameria-logo {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.site-logo .gameria-logo:hover {
    opacity: 0.8;
}ion: Tema personalizado para o site Gameria - focado em jogos e entretenimento digital
Author: Gameria Team
Author URI: http://localhost/gameria/
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gameria
Domain Path: /languages
Tags: gaming, entertainment, responsive, custom-header, custom-background, custom-menu, featured-images, sticky-post, threaded-comments
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
*/

/*
===========================================
GAMERIA THEME - BOOTSTRAP CUSTOMIZATIONS
===========================================
Este tema usa Bootstrap 5.3.2 como base.
Personalizações específicas do Gameria abaixo.
*/

/* Variáveis CSS personalizadas - Cores da Marca Gameria */
:root {
    --gameria-white: #ffffff;
    --gameria-orange: #ff4b00;
    --gameria-black: #161616;
    
    /* Variações para diferentes contextos */
    --gameria-orange-light: #ff6b2b;
    --gameria-orange-dark: #e04000;
    --gameria-black-light: #2c2c2c;
    --gameria-gray-light: #f5f5f5;
    --gameria-gray-medium: #e0e0e0;
}

/* Scroll suave para links âncora */
html {
    scroll-behavior: smooth;
}

/* Override da fonte padrão do Bootstrap */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: var(--gameria-white);
    color: var(--gameria-black);
}

/* ========================================
   3. CLASSES UTILITÁRIAS
======================================== */

/* Destaque de texto em laranja */
.text-highlight {
    color: var(--gameria-orange);
}

/* Header com cores da marca */
.site-header {
    background-color: var(--gameria-white);
    box-shadow: 0 2px 10px rgba(22, 22, 22, 0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Top Bar - Logo, Slogan e Contato */
.top-bar {
    background-color: var(--gameria-white);
    border-bottom: 1px solid var(--gameria-gray-light);
}

.site-logo .gameria-logo {
    max-height: 70px;
    width: auto;
}

/* Slogan */
.site-slogan {
    padding: 0 1rem;
}

.slogan-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gameria-black-light);
    line-height: 1.4;
    font-style: italic;
}

/* Contato WhatsApp */
.contact-info {
    display: flex;
    justify-content: flex-end;
}

.whatsapp-link {
    color: var(--gameria-black) !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}



.whatsapp-link i {
    font-size: 1.5rem;
    color: #25D366;
    transition: color 0.3s ease;
}

.whatsapp-link:hover i {
    color: #20b954;
}

.phone-number {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.main-navigation {
    background-color: var(--gameria-white);
    border-top: 1px solid var(--gameria-gray-medium);
}

.main-navigation .navbar {
    padding: 0;
}

.main-navigation .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Itens normais do menu distribuídos apenas em desktop */
@media (min-width: 992px) {
    .main-navigation .navbar-nav .nav-item:not(.whatsapp-menu-item) {
        flex: 1;
        text-align: center;
    }
    
    .main-navigation .navbar-nav .nav-item:not(.whatsapp-menu-item) .nav-link {
        justify-content: center;
    }
}

/* Navbar Toggler - funciona tanto no top-bar quanto na navigation */
.navbar-toggler {
    border: 2px solid var(--gameria-black);
    color: var(--gameria-black);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(22, 22, 22, 0.15);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 22, 22, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Toggler específico para main-navigation (compatibilidade) */
.main-navigation .navbar-toggler {
    border: 2px solid var(--gameria-black);
    color: var(--gameria-black);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
}

.main-navigation .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(22, 22, 22, 0.15);
}

.main-navigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 22, 22, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Breadcrumbs SEO */
.breadcrumbs {
    background-color: var(--gameria-gray-light);
    padding: 0.75rem 0;
    margin-bottom: 1rem;
}

.breadcrumbs .breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
}

.breadcrumbs .breadcrumb-item a {
    color: var(--gameria-black-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs .breadcrumb-item a:hover {
    color: var(--gameria-orange);
}

.breadcrumbs .breadcrumb-item.active {
    color: var(--gameria-black);
    font-weight: 500;
}

.breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--gameria-black-light);
}

/* Menu Navigation Links */
.main-navigation .navbar-nav .nav-link {
    color: var(--gameria-black) !important;
    font-weight: 500;
    padding: 1rem 0.5rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 0;
    margin: 0;
    background-color: transparent;
    text-align: center;
    flex: 1;
}

.main-navigation .navbar-nav .nav-link:hover,
.main-navigation .navbar-nav .nav-link:focus {
    color: var(--gameria-orange) !important;
    background-color: transparent;
    transform: none;
}

.main-navigation .navbar-nav .nav-item.current-menu-item .nav-link,
.main-navigation .navbar-nav .nav-item.current_page_item .nav-link {
    color: var(--gameria-orange) !important;
    background-color: transparent;
}

/* Botão WhatsApp no Menu */
.btn-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background-color: #20b954 !important;
    border-color: #20b954 !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:focus {
    background-color: #20b954 !important;
    border-color: #20b954 !important;
    color: white !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

/* Item WhatsApp no menu */
.whatsapp-menu-item {
    flex: 0 0 auto !important;
    margin-left: 2rem !important;
}

.whatsapp-menu-item .btn-whatsapp {
    margin-left: 0;
}

/* Em mobile, centralizar o item WhatsApp */
@media (max-width: 991.98px) {
    .whatsapp-menu-item {
        margin-left: 0 !important;
        text-align: center;
        margin-top: 1rem;
    }
    
    .whatsapp-menu-item .btn-whatsapp {
        margin-left: 0;
        display: inline-flex;
    }
}

/* Dropdown menu customizado */
.main-navigation .dropdown-menu {
    background-color: var(--gameria-white);
    border: 1px solid var(--gameria-gray-medium);
    border-radius: 0.375rem;
    box-shadow: 0 4px 15px rgba(22, 22, 22, 0.1);
    border-top: none;
    margin-top: 0;
}

.main-navigation .dropdown-menu .dropdown-item {
    color: var(--gameria-black);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.main-navigation .dropdown-menu .dropdown-item:hover,
.main-navigation .dropdown-menu .dropdown-item:focus {
    background-color: rgba(255, 75, 0, 0.1);
    color: var(--gameria-orange);
}

/* ========================================
   6. SEÇÃO HERO
======================================== */

.hero-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, 
        var(--gameria-black) 0%, 
        var(--gameria-orange) 100%);
    background-image: url('images/hero-bg-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(30deg, 
        rgba(22, 22, 22, 0.9) 0%, 
        rgba(255, 75, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    min-width: 220px;
}

.btn-hero.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-hero.btn-whatsapp:hover {
    background-color: #20b954;
    border-color: #20b954;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-hero.btn-outline-light {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-hero.btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--gameria-black);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ========================================
   7. SEÇÃO NOSSOS VIDEOGAMES
======================================== */

.videogames-section {
    background-color: var(--gameria-gray-light);
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gameria-black);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gameria-black-light);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videogame-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(22, 22, 22, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.videogame-card:hover {
    box-shadow: 0 8px 30px rgba(22, 22, 22, 0.15);
}

.card-image {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.videogame-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gameria-black);
    margin-bottom: 0.75rem;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--gameria-black-light);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.card-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gameria-black);
    line-height: 1.4;
}

.card-features li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--gameria-orange);
    font-weight: bold;
}

/* Botão dos Cards */
.card-action {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gameria-gray-light);
}

.btn-card-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-card-whatsapp:hover {
    background-color: #20b954 !important;
    border-color: #20b954 !important;
    color: white !important;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.btn-card-whatsapp:focus {
    background-color: #20b954 !important;
    border-color: #20b954 !important;
    color: white !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

.btn-card-whatsapp i {
    font-size: 1rem;
}

/* ========================================
   8. SEÇÃO COMO FUNCIONA
======================================== */

.process-section {
    background-color: var(--gameria-white);
    padding: 5rem 0;
}

.process-card {
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    background: var(--gameria-white);
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(22, 22, 22, 0.08);
}

.process-card:hover {
    box-shadow: 0 4px 20px rgba(22, 22, 22, 0.15);
    border-color: var(--gameria-gray-medium);
}

.process-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gameria-gray-medium);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gameria-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-description {
    font-size: 0.95rem;
    color: var(--gameria-black-light);
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão WhatsApp da Seção Processo */
.btn-process-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.btn-process-whatsapp:hover {
    background-color: #20b954 !important;
    border-color: #20b954 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-process-whatsapp:focus {
    background-color: #20b954 !important;
    border-color: #20b954 !important;
    color: white !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

.btn-process-whatsapp i {
    font-size: 1.2rem;
}

/* ========================================
   9. SEÇÃO GALERIA DE EVENTOS
======================================== */

.gallery-section {
    background-color: var(--gameria-gray-light);
    padding: 5rem 0;
    overflow-x: hidden;
}

.gallery-section .carousel {
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
}

.gallery-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(22, 22, 22, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(22, 22, 22, 0.2);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Controles do Carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: var(--gameria-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Conteúdo principal */
.site-main {
    background: var(--gameria-white);
    padding: 3rem 0;
    min-height: 70vh;
}

/* Posts styling com Bootstrap */
.post-item {
    background: var(--gameria-white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(22, 22, 22, 0.08);
    margin-bottom: 2rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gameria-gray-light);
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(22, 22, 22, 0.12);
    border-color: var(--gameria-orange);
}

.post-title a {
    color: var(--gameria-black);
    text-decoration: none;
    font-weight: 600;
}

.post-title a:hover {
    color: var(--gameria-orange);
}

.post-meta {
    color: var(--gameria-black-light);
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.read-more {
    color: var(--gameria-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--gameria-orange-dark);
    transform: translateX(5px);
}

/* ============================================
   SEÇÃO: TESTIMONIALS (DEPOIMENTOS)
   ============================================ */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-logo img {
    height: 24px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: var(--gameria-orange);
    font-size: 1rem;
}

.testimonial-content {
    text-align: left;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0.5rem 1rem 1rem 0.5rem;
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--gameria-orange);
    position: absolute;
    top: -0.8rem;
    left: -1.2rem;
    font-weight: bold;
    z-index: 1;
}

.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--gameria-orange);
    position: absolute;
    bottom: -1.2rem;
    right: -0.5rem;
    font-weight: bold;
    z-index: 1;
}

.testimonial-author {
    margin-top: 1rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gameria-black);
    margin-bottom: 0.3rem;
}

.event-type {
    font-size: 0.9rem;
    color: var(--gameria-orange);
    font-weight: 600;
    margin: 0;
}

/* Responsividade para Depoimentos */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    .google-logo img {
        height: 20px;
        max-width: 70px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.5rem;
    }
    
    .testimonial-text::before {
        top: -0.6rem;
        left: -1rem;
    }
    
    .testimonial-text::after {
        bottom: -1rem;
        right: -0.3rem;
    }
    
    .testimonial-text {
        padding: 0.3rem 0.8rem 0.8rem 1.2rem;
    }
}

/* ============================================
   SEÇÃO: CONTATO
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gameria-orange) 0%, #ff6b00 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-details {
    text-align: center;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gameria-black);
    margin-bottom: 0.5rem;
}

.contact-value {
    margin: 0;
    font-size: 1rem;
}

.contact-value a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--gameria-orange);
    text-decoration: underline;
}

/* Responsividade para Contato */
@media (max-width: 768px) {
    .contact-item {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.7rem;
    }
    
    .contact-label {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-item {
        padding: 1rem 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
}

/* ============================================
   SEÇÃO: FOOTER
   ============================================ */
.site-footer {
    background-color: #f8f9fa;
    color: #333333;
    padding: 4rem 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    color: var(--gameria-orange);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Links Rápidos */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--gameria-orange);
}

/* Contato Footer */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info-item i {
    color: var(--gameria-orange);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-info-item a {
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--gameria-orange);
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link.facebook {
    background-color: #1877f2;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 75, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.copyright {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

.copyright strong {
    color: var(--gameria-orange);
}

/* Responsividade Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-info-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Botões personalizados */
.btn-gameria {
    background-color: var(--gameria-orange);
    border: 2px solid var(--gameria-orange);
    color: var(--gameria-white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gameria:hover {
    background-color: var(--gameria-orange-dark);
    border-color: var(--gameria-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 0, 0.3);
    color: var(--gameria-white);
}

.btn-gameria-outline {
    background-color: transparent;
    border: 2px solid var(--gameria-orange);
    color: var(--gameria-orange);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-gameria-outline:hover {
    background-color: var(--gameria-orange);
    color: var(--gameria-white);
    transform: translateY(-2px);
}

/* Sidebar styling */
.sidebar {
    margin-top: 2rem;
}

.widget {
    background: var(--gameria-white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(22, 22, 22, 0.08);
    border: 1px solid var(--gameria-gray-light);
}

.widget-title {
    color: var(--gameria-black);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gameria-orange);
}

/* Responsividade aprimorada com Bootstrap */
@media (max-width: 992px) {
    /* Hero Responsivo */
    .hero-section {
        min-height: 55vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-hero {
        min-width: 200px;
        font-size: 1rem;
    }
    
    .slogan-text {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .whatsapp-link {
        font-size: 0.9rem;
        padding: 0.375rem;
    }
    
    .whatsapp-link i {
        font-size: 1.3rem;
    }
    
    /* Layout mobile com logo centralizada e botão menu absoluto */
    @media (max-width: 991.98px) {
        .site-slogan {
            margin-top: 1rem;
        }
        
        .contact-info {
            margin-top: 0.5rem;
        }
        
        /* Container da logo com posição relativa */
        .logo-container {
            position: relative;
            width: 100%;
        }
        
        /* Logo centralizada */
        .site-logo {
            display: inline-block;
        }
        
        /* Botão menu posicionado absolutamente no topo direita */
        .mobile-menu-btn {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }
    }
    
    /* Botão WhatsApp responsivo */
    .navbar-whatsapp {
        margin-top: 1rem;
        margin-left: 0 !important;
        width: 100%;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    /* Seção Videogames Responsiva */
    .section-title {
        font-size: 2.2rem;
    }
    
    .videogames-section {
        padding: 4rem 0;
    }
    
    .card-image {
        height: 260px;
    }
    
    /* Seção Processo Responsiva */
    .process-section {
        padding: 4rem 0;
    }
    
    .process-number {
        font-size: 3.5rem;
    }
    
    .process-card {
        padding: 1.5rem 1rem;
    }
    
    .btn-process-whatsapp {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        min-width: 220px;
    }
    
    /* Seção Galeria Responsiva */
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 -25px;
    }
}

@media (max-width: 768px) {
    /* Hero Mobile */
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        margin-bottom: 0.5rem;
    }
    
    .slogan-text {
        font-size: 0.95rem;
        text-align: center !important;
        margin: 1rem 0;
    }
    
    .site-logo {
        text-align: center;
    }
    
    .site-logo .gameria-logo {
        max-height: 60px;
    }
    
    .contact-info {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .whatsapp-link {
        font-size: 0.85rem;
        padding: 0.25rem;
    }
    
    .whatsapp-link i {
        font-size: 1.2rem;
    }
    
    .main-navigation .navbar-nav {
        text-align: center;
        padding: 1rem 0;
        flex-direction: column;
        justify-content: center;
    }
    
    .main-navigation .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 0.375rem;
        flex: none;
        text-align: center;
    }
    
    .main-navigation .navbar-nav .nav-link:hover {
        background-color: rgba(255, 75, 0, 0.1);
    }
    
    .post-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .site-main {
        padding: 2rem 0;
    }
    
    /* Seção Videogames Mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .videogames-section {
        padding: 3rem 0;
    }
    
    .card-image {
        height: 260px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    /* Seção Processo Mobile */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .process-title {
        font-size: 1.1rem;
    }
    
    .process-description {
        font-size: 0.9rem;
        max-width: none;
        padding: 0 1rem;
    }
    
    .btn-process-whatsapp {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
        min-width: 200px;
        margin: 0 1rem;
        width: calc(100% - 2rem);
        max-width: 300px;
    }
    
    /* Seção Galeria Mobile */
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    /* Hero Mobile Pequeno */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .slogan-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .site-logo .gameria-logo {
        max-height: 50px;
    }
    
    .whatsapp-link {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
    
    /* Botão menu mobile no topo direita */
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
        border-width: 2px;
    }
    
    /* Seção Videogames Mobile Pequeno */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
    }
    
    /* Seção Processo Mobile Pequeno */
    .process-number {
        font-size: 2.5rem;
    }
    
    .process-title {
        font-size: 1rem;
    }
    
    .process-description {
        font-size: 0.85rem;
    }
    
    .whatsapp-link i {
        font-size: 1.1rem;
        margin-right: 0.375rem !important;
    }
    
    .post-item {
        padding: 0.75rem;
    }
    
    /* Seção Galeria Mobile Pequeno */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
}