/*
Theme Name: NewSiteBGS
Theme URI: https://newsitebgs.local
Author: Seu Nome
Author URI: https://seusite.com
Description: Um tema WordPress personalizado e moderno para NewSiteBGS, desenvolvido com as melhores práticas.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: newsitebgs
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready, custom-logo, custom-background
*/

/* ==========================================================================
   CSS Custom Properties (Variáveis)
   ========================================================================== */

:root {
    --color-orange: #fe5400;
    --color-blue: #00a5ff;
    --color-black: #1b1b1b;
    --color-white: #fff;
    --color-text: #333;
    --color-gray: #666;
    --border-default: 3px solid #000;
    --card-shadow-offset: 10px;
    --transition-default: 0.3s ease;
}

/* ==========================================================================
   Reset e Normalize
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Classes semânticas (substitutos dos elementos HTML inválidos h7-h11) */
.bgs-card-title {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
}

.bgs-text-section {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

.bgs-heading-xl {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
}

p {
    margin-bottom: 0.5rem;
    text-align: justify;
}

a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #004080;
}

.link-laranja-azul {
    color: #fe5400;
    text-decoration: none;
    transition: color var(--transition-default);
}

.link-laranja-azul:hover,
.link-laranja-azul:focus {
    color: #00a5ff;
}

.link-preto-branco {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-preto-branco:hover,
.link-preto-branco:focus {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
    padding: 2rem 0;
}

.content-area {
    width: 100%;
}

/* Layout com sidebar */
.has-sidebar .content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

@media (max-width: 768px) {
    .has-sidebar .content-area {
        grid-template-columns: 1fr;
    }
}

/* Gap horizontal entre colunas dos cards */
.row-gap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 0; /* row-gap: 2.5rem (vertical), column-gap: 0 (horizontal) */
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background-color: var(--color-black);
    border-color: #fff !important;
}
/* ==========================================================================
   Banner Hero
   ========================================================================== */

.hero-banner {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 0;
    overflow: visible;
}

/* Grid de 2 colunas para as imagens */
.hero-images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}

/* Coluna esquerda - 2 imagens empilhadas */
.hero-left-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

.hero-image-top img,
.hero-image-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

/* Coluna direita - personagem */
.hero-right-column {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 4;
}

.hero-character {
    max-width: 100%;
    height: auto;
    position: relative;
    bottom: -40px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    z-index: 4;
}

/* Border inclinado */
.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #000;
    transform: rotate(-2deg);
    transform-origin: left bottom;
    z-index: 1;
}

/* Background com corte inclinado */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/fundo_laranja_suave.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5vw), 0 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem;
    overflow: visible;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-banner {
        padding: 2rem 0;
    }
    
    .hero-images-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 0 3rem;
    }
}

/* ==========================================================================
   Carrossel de Patrocinadores & Expositores (Home)
   ========================================================================== */

.home-patrocinadores {
    padding: 3rem 0;
    overflow: hidden;
}

.home-patrocinadores-titulo {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 2rem;
}

.home-patr-swiper {
    padding: 0 48px; /* espaço para as setas */
}

.home-patr-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-patr-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 12px;
    transition: opacity var(--transition-default), transform var(--transition-default);
}

a.home-patr-item {
    text-decoration: none;
}

a.home-patr-item:hover,
a.home-patr-item:focus {
    opacity: .75;
    transform: scale(1.06);
    outline: none;
}

.home-patr-item img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

a.home-patr-item:hover img {
    opacity: .8;
}

/* Setas do Swiper */
.home-patr-swiper .swiper-button-prev,
.home-patr-swiper .swiper-button-next {
    color: var(--color-orange);
}

.home-patr-swiper .swiper-button-prev::after,
.home-patr-swiper .swiper-button-next::after {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .home-patr-swiper {
        padding: 0 36px;
    }
}

.home-patr-nota {
    text-align: center;
    font-size: 0.72rem;
    color: #888;
    margin: 0.5rem 0 0;
    padding: 0 1rem;
}

/* ==========================================================================
   Vídeo Oficial (Home)
   ========================================================================== */

.home-video-oficial {
    border: 10px solid var(--color-black);
    background-color: var(--color-blue);
    padding: 3rem 0;
}

.home-video-inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.home-video-titulo {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

/* Wrapper responsivo 16:9 */
.home-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 5px solid var(--color-black);
}

.home-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==========================================================================
   Newsletter Section (Home)
   ========================================================================== */

.home-newsletter {
    border: 10px solid var(--color-black);
    background-color: var(--color-blue);
    padding: 3rem 0;
}

.home-newsletter-inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.home-newsletter-titulo {
    text-align: center;
    font-family: 'Gobold', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.home-newsletter-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.home-newsletter-form .sib-form-message-panel {
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.home-newsletter-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.home-newsletter-input {
    flex: 1;
    max-width: 500px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 3px solid var(--color-black);
    border-radius: 0;
    background-color: #ffffff;
    color: var(--color-black);
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
}

.home-newsletter-input:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(254, 84, 0, 0.2);
}

.home-newsletter-input::placeholder {
    color: #666;
    opacity: 0.7;
}

/* Ajustar o botão btn-orange-black dentro do formulário */
.home-newsletter-input-wrapper .btn-orange-black {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .home-newsletter {
        padding: 2rem 0;
    }
    
    .home-newsletter-titulo {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .home-newsletter-input-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .home-newsletter-input {
        max-width: 100%;
        width: 100%;
    }
    
    .home-newsletter-input-wrapper .btn-orange-black {
        width: 100%;
    }
}

/* ==========================================================================
   Carrossel de Atrações (Home)
   ========================================================================== */

.home-atracoes {
    overflow: hidden;
    position: relative;
}

/* ==========================================================================
   Produtos Oficiais (Home)
   ========================================================================== */

.home-produtos-oficiais {
    background-color: var(--color-orange);
    border: 10px solid var(--color-black);
    padding: 4rem 0;
}

.home-produtos-oficiais h1 {
    color: var(--color-black);
    font-weight: 900;
}

/* Card de Produto */
.produto-card {
    background-color: #fff;
    border: 3px solid var(--color-black);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Swiper de Imagens do Produto */
.produto-img-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.produto-img-swiper .produto-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.produto-img-prev,
.produto-img-next {
    width: 15px;
    height: 15px;
    color: var(--color-black) !important;
}

.produto-img-prev::after,
.produto-img-next::after {
    font-size: 10px !important;
    font-weight: bold;
}

/* Informações do Produto */
.produto-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produto-nome {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.produto-descricao {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.produto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.produto-valor {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--color-orange);
}

.produto-footer .bgs-button-orange-black {
    padding: 0.75rem 1.5rem;
    min-width: auto;
    min-height: auto;
}

.produto-footer .bgs-button-orange-black h5 {
    font-size: 0.875rem;
}


@media (max-width: 991px) {
    .produto-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .produto-footer .bgs-button-orange-black {
        width: 100%;
    }
}

/* Swiper de Produtos */
.produtos-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.produtos-nav-wrapper .produtos-prev,
.produtos-nav-wrapper .produtos-next {
    position: static;
    flex-shrink: 0;
    margin-top: 0;
    transform: none;
}

.produtos-swiper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.produtos-swiper .swiper-slide {
    height: auto;
}

.produtos-pagination {
    position: relative !important;
    margin-top: 1.25rem;
    text-align: center;
}

.produtos-pagination .swiper-pagination-bullet {
    background-color: var(--color-black);
    opacity: 0.35;
}

.produtos-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Navegação mobile */
.produtos-prev,
.produtos-next {
    color: var(--color-black) !important;
}

.produtos-prev::after,
.produtos-next::after {
    font-size: 22px;
    font-weight: bold;
}

/* Desktop: Swiper desativado → layout grid centralizado */
@media (min-width: 992px) {
    .produtos-swiper {
        padding-bottom: 0;
    }

}

/* ==========================================================================
   Patrocinadores (Home)
   ========================================================================== */

.home-patrocinadores h1 {
    color: var(--color-black);
    font-weight: 900;
    margin-bottom: 3rem;
}

.patrocinador-row {
    margin-bottom: 2rem;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.patrocinador-categoria-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: none;
    max-width: 80px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    flex-shrink: 0;
    border: 3px solid var(--color-black);
}

.patrocinador-categoria-titulo h2 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0;
    padding: 1rem 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.patrocinador-logos {
    flex: 1;
    padding: 0 2rem;
    display: flex;
}

.patrocinador-logos > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.bgs-marcas-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Cores por categoria */
.patrocinador-master .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #8B008B 0%, #4B0082 100%);
    border: 4px solid #FFD700;
    border-right: none;
}

.patrocinador-master .patrocinador-logos {
    border: 4px solid #FFD700;
}

.patrocinador-diamante .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #B9F2FF 0%, #00CED1 100%);
}

.patrocinador-ouro .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.patrocinador-prata .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #E8E8E8 0%, #A8A8A8 100%);
}

.patrocinador-bronze .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #CD7F32 0%, #8B5A3C 100%);
}

.patrocinador-cobre .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #B87333 0%, #A0522D 100%);
}

.patrocinador-expositor .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
}

.patrocinador-parceiro .patrocinador-categoria-titulo {
    background: linear-gradient(135deg, #1E90FF 0%, #0047AB 100%);
}

/* Ajuste dos logos dentro da seção */
.patrocinador-logos .bgs-marca-item {
    padding: 1.5rem;
}

/* Botões CTA abaixo das categorias */
.patrocinador-cta-button {
    margin: 2rem 0;
    text-align: left;
}

/* Tablets */
@media (max-width: 991px) {
    .patrocinador-categoria-titulo {
        max-width: 60px;
    }
    
    .patrocinador-categoria-titulo h2 {
        font-size: 1.1rem;
    }
    
    .patrocinador-logos {
        padding: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .bgs-marcas-home {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .patrocinador-logos > div {
        justify-content: center;
    }

    .home-patrocinadores {
        padding: 2.5rem 0;
    }
    
    .home-patrocinadores .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .patrocinador-row {
        flex-direction: row;
        align-items: stretch;
    }
    
    .patrocinador-categoria-titulo {
        max-width: 25px;
        min-width: 25px;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        text-orientation: mixed;
        border: 3px solid var(--color-black);
        padding: 0.5rem 0;
    }
    
    .patrocinador-categoria-titulo h2 {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        letter-spacing: 0.05em;
    }
    
    .patrocinador-master .patrocinador-categoria-titulo {
        border: 4px solid #FFD700;
        border-right: none;
    }
    
    .patrocinador-master .patrocinador-logos {
        border: 4px solid #FFD700;
    }
    
    .patrocinador-logos {
        padding: 0.75rem 0.25rem;
    }
    
    .patrocinador-logos .bgs-marca-item {
        padding: 0.35rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .patrocinador-categoria-titulo {
        max-width: 25px;
        min-width: 25px;
    }
    
    .patrocinador-categoria-titulo h2 {
        font-size: 0.85rem;
    }
    
    .patrocinador-logos .bgs-marca-item {
        padding: 0.25rem;
    }
}

/* ==========================================================================
   Carrossel de Atrações (Home)
   ========================================================================== */


.home-atracoes-swiper {
    width: 100%;
}

.home-atracoes-swiper .swiper-slide {
    padding: 4rem 0 5rem;
}

/* Setas */
.home-atracoes-prev,
.home-atracoes-next {
    color: var(--color-orange) !important;
}

.home-atracoes-prev::after,
.home-atracoes-next::after {
    font-size: 1.25rem;
    font-weight: 900;
}

/* Paginação */
.home-atracoes-pagination {
    bottom: 16px !important;
}

.home-atracoes-pagination .swiper-pagination-bullet {
    background: var(--color-black);
    opacity: .3;
    width: 10px;
    height: 10px;
}

.home-atracoes-pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    opacity: 1;
}

@media (max-width: 768px) {
    .home-atracoes-swiper .swiper-slide {
        padding: 2.5rem 0 4rem;
    }

    /* Mobile: imagem por cima, texto e botão abaixo */
    .home-atracoes .row > .col-lg-6:first-child {
        order: 2;
    }
    .home-atracoes .row > .col-lg-6:last-child {
        order: 1;
    }

    /* Mobile: ocultar botões de navegação */
    .home-atracoes-prev,
    .home-atracoes-next {
        display: none !important;
    }
}

/* ==========================================================================
   Banner de Título da Página
   ========================================================================== */

.page-title-banner {
    background-image: url('images/fundo_azul_suave.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    text-align: center;
}

.page-title-banner-Monster {
    background-image: url('images/fundo-verde-Monster.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    text-align: center;
}

.page-title-banner h1 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Gobold', sans-serif;
}

.page-title-banner-Monster h1 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Gobold', sans-serif;
}

.banner-monster-inner {
    position: relative;
    display: inline-block;
}

.banner-monster-logo {
    height: 5.5rem;
    width: auto;
}

@media (max-width: 768px) {
    .page-title-banner,
    .page-title-banner-Monster {
        padding: 2rem 0;
    }

    .page-title-banner h1,
    .page-title-banner-Monster h1 {
        font-size: 1.75rem;
    }

}

/* ==========================================================================
   Container com Background Laranja Suave
   ========================================================================== */

.container-laranja-suave {
    background-image: url('images/fundo_laranja_suave.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 1rem;
}

/* ==========================================================================
   Mapa Responsivo
   ========================================================================== */

.mapa-section {
    padding: 0 !important;
}

.mapa-section .container {
    max-width: 100% !important;
    padding: 0 !important;
}

.mapa-section h2 {
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem 1rem 0;
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Aspecto 16:9 */
    height: 0;
    overflow: hidden;
    margin-left: -12px;
    margin-right: -12px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.site-branding {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   BGS Card
   ========================================================================== */

/* — Base compartilhada — */
.bgs-card-black-blue,
.bgs-card-black-orange,
.bgs-card-white-blue,
.bgs-card-white-orange,
.bgs-card-white-black,
.bgs-card-blue-black,
.bgs-card-blue-orange,
.bgs-card-orange-black,
.bgs-card-orange-blue {
    position: relative;
    background: transparent;
    padding: 2rem;
}

/* Cards com layout flex (conteúdo empilhado verticalmente) */
.bgs-card-black-orange,
.bgs-card-white-blue,
.bgs-card-white-orange,
.bgs-card-blue-orange {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Filhos acima das pseudo-camadas */
.bgs-card-black-blue > *,
.bgs-card-black-orange > *,
.bgs-card-white-blue > *,
.bgs-card-white-orange > *,
.bgs-card-white-black > *,
.bgs-card-blue-black > *,
.bgs-card-blue-orange > *,
.bgs-card-orange-black > *,
.bgs-card-orange-blue > * {
    position: relative;
    z-index: 1;
}

/* — Camada frontal (::before) — */
.bgs-card-black-blue::before,
.bgs-card-black-orange::before,
.bgs-card-white-blue::before,
.bgs-card-white-orange::before,
.bgs-card-white-black::before,
.bgs-card-blue-black::before,
.bgs-card-blue-orange::before,
.bgs-card-orange-black::before,
.bgs-card-orange-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    border: var(--border-default);
}

/* — Camada traseira (::after) — */
.bgs-card-black-blue::after,
.bgs-card-black-orange::after,
.bgs-card-white-blue::after,
.bgs-card-white-orange::after,
.bgs-card-white-black::after,
.bgs-card-blue-black::after,
.bgs-card-blue-orange::after,
.bgs-card-orange-black::after,
.bgs-card-orange-blue::after {
    content: '';
    position: absolute;
    top: var(--card-shadow-offset);
    left: var(--card-shadow-offset);
    right: calc(-1 * var(--card-shadow-offset));
    bottom: calc(-1 * var(--card-shadow-offset));
    z-index: -1;
}

/* — Cor do texto — */
.bgs-card-black-blue,
.bgs-card-black-orange,
.bgs-card-blue-black,
.bgs-card-blue-orange,
.bgs-card-orange-black,
.bgs-card-orange-blue {
    color: var(--color-white);
}

.bgs-card-white-blue,
.bgs-card-white-orange,
.bgs-card-white-black {
    color: var(--color-black);
}

/* — Cor da camada frontal (::before) — */
.bgs-card-black-blue::before,
.bgs-card-black-orange::before {
    background-color: var(--color-black);
}

.bgs-card-white-blue::before,
.bgs-card-white-orange::before,
.bgs-card-white-black::before {
    background-color: var(--color-white);
}

.bgs-card-blue-black::before,
.bgs-card-blue-orange::before {
    background-color: var(--color-blue);
}

.bgs-card-orange-black::before,
.bgs-card-orange-blue::before {
    background-color: var(--color-orange);
}

/* — Cor da camada traseira (::after) — */
.bgs-card-black-blue::after,
.bgs-card-white-blue::after,
.bgs-card-orange-blue::after {
    background-color: var(--color-blue);
}

.bgs-card-black-orange::after,
.bgs-card-white-orange::after,
.bgs-card-blue-orange::after {
    background-color: var(--color-orange);
}

.bgs-card-white-black::after,
.bgs-card-blue-black::after,
.bgs-card-orange-black::after {
    background-color: var(--color-black);
}

@media (max-width: 768px) {
    .bgs-card-black-blue,
    .bgs-card-black-orange,
    .bgs-card-white-blue,
    .bgs-card-white-orange,
    .bgs-card-blue-black,
    .bgs-card-blue-orange,
    .bgs-card-orange-black,
    .bgs-card-orange-blue {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Headings inside white-background cards must be black (overrides global h1-h6 white) */
.bgs-card-white-blue h1, .bgs-card-white-blue h2, .bgs-card-white-blue h3,
.bgs-card-white-blue h4, .bgs-card-white-blue h5, .bgs-card-white-blue h6,
.bgs-card-white-orange h1, .bgs-card-white-orange h2, .bgs-card-white-orange h3,
.bgs-card-white-orange h4, .bgs-card-white-orange h5, .bgs-card-white-orange h6,
.bgs-card-white-black h1, .bgs-card-white-black h2, .bgs-card-white-black h3,
.bgs-card-white-black h4, .bgs-card-white-black h5, .bgs-card-white-black h6 {
    color: var(--color-black);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.footer-logo-img {
  max-height: 60px;
  height: auto;
}

.bgs-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
  background: transparent;
  color: #fe5400;
  text-decoration: none;
  font-size: 1.75rem;
  transform: skewX(-5deg);
}

.bgs-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 0;
}

.bgs-button::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  background-color: #fe5400;
  z-index: -1;
  transform: skewX(0deg);
}

.bgs-button i {
  position: relative;
  z-index: 1;
  color: #000;
  transform: skewX(5deg);
}

.bgs-button svg {
  position: relative;
  z-index: 1;
  transform: skewX(5deg);
  fill: #000;
}

.bgs-button span {
  position: relative;
  z-index: 1;
  color: #000;
  transform: skewX(5deg);
  padding: 0.4375rem 0.9375rem;
  font-size: 1.5625rem;
  font-weight: bold;
}

.bgs-button:hover {
  text-decoration: none;
}

.bgs-button:hover::before {
  background-color: #fe5400;
}

.bgs-button:hover::after {
  background-color: #fff;
}

.bgs-button:hover i {
  color: #fff;
}

.bgs-button:hover svg {
  fill: #fff;
}

.bgs-button:hover span {
  color: #fff;
}

.bgs-button:active::before {
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  background-color: #fe5400;
}

.bgs-button:active i {
  color: #fff;
  transform: skewX(5deg) translate(5px, 5px);
}

.bgs-button:active svg {
  fill: #fff;
  transform: skewX(5deg) translate(5px, 5px);
}

.bgs-button:active span {
  color: #fff;
  transform: skewX(5deg) translate(5px, 5px);
}

/* Footer 4-col layout additions */
.footer-nav-link {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: #fe5400;
  text-decoration: none;
}

.bgs-button--sm {
  min-width: 36px;
  min-height: 36px;
  font-size: 1.1rem;
}

.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: #fff;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.footer-newsletter-input::placeholder {
  color: #777;
}

.footer-newsletter-input:focus {
  border-color: #fe5400;
  background: rgba(254, 84, 0, 0.05);
}

.bgs-button--newsletter {
  font-size: 1rem;
  justify-content: center;
}

.bgs-button--newsletter span {
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== Footer v2 ===== */
.footer-v2-wrap {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
}

.footer-v2-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(254, 84, 0, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 84, 0, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-v2-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-orange);
  pointer-events: none;
}

.footer-v2-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
}

.footer-v2-glow--tr {
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(254, 84, 0, 0.07) 0%, transparent 70%);
}

.footer-v2-glow--bl {
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(254, 84, 0, 0.05) 0%, transparent 70%);
}

.footer-v2-inner {
  position: relative;
  padding: 3.5rem 0 1.5rem;
}

.footer-v2-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-v2-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-v2-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-v2-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #777;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.footer-v2-social-btn:hover {
  border-color: #fe5400;
  color: #fe5400;
  box-shadow: 0 0 18px rgba(254, 84, 0, 0.25);
  text-decoration: none;
}

.footer-v2-right {
  display: contents;
}

.footer-v2-col-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-v2-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-v2-links li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-v2-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-v2-dot--orange {
  background-color: rgba(254, 84, 0, 0.6);
}

.footer-v2-dot--white {
  background-color: rgba(255, 255, 255, 0.25);
}

.footer-v2-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: #bbbbbb;
}

@media (max-width: 767px) {
  .footer-v2-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-v2-left {
    grid-column: 1 / -1;
  }
}

.bgs-button-orange-black {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 1.75rem;
  transform: skewX(-5deg);
  padding: 1rem 2rem;
}

.bgs-button-orange-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fe5400;
  border: 3px solid #000;
  z-index: -1;
}

.bgs-button-orange-black::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: -5px;
  bottom: -5px;
  background-color: #000;
  z-index: -2;
}

.bgs-button-orange-black h2,
.bgs-button-orange-black h5 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin: 0;
  transform: skewX(5deg);
}

.bgs-button-orange-black:hover {
  text-decoration: none;
}

.bgs-button-orange-black:hover::before {
  background-color: #000;
}

.bgs-button-orange-black:hover::after {
  background-color: #fe5400;
}

.bgs-button-orange-black:active::before {
  top: 10px;
  left: 10px;
  right: -5px;
  bottom: -5px;
  background-color: #000;
}

.bgs-button-orange-black:active h2, 
.bgs-button-orange-black:active h5 {
  transform: skewX(5deg) translate(10px, 10px);
}

.bgs-button-black-blue {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 1.75rem;
  transform: skewX(-5deg);
}

.bgs-button-black-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  border: 3px solid #000;
  z-index: -1;
}

.bgs-button-black-blue::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: -5px;
  bottom: -5px;
  background-color: #00a5ff;
  z-index: -2;
}

.bgs-button-black-blue h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin: 0;
  transform: skewX(5deg);
}

.bgs-button-black-blue span {
  position: relative;
  z-index: 1;
  color: #fff;
  transform: skewX(5deg);
  padding: 0.4375rem 0.9375rem;
  font-size: 1.5625rem;
  font-weight: bold;
}

.bgs-button-black-blue:hover {
  text-decoration: none;
}

.bgs-button-black-blue:hover::before {
  background-color: #00a5ff;
}

.bgs-button-black-blue:hover::after {
  background-color: #000;
}

.bgs-button-black-blue:active::before {
  top: 10px;
  left: 10px;
  right: -5px;
  bottom: -5px;
  background-color: #00a5ff;
}

.bgs-button-black-blue:active h2 {
  transform: skewX(5deg) translate(10px, 10px);
}

.bgs-button-black-blue:active span {
  transform: skewX(5deg) translate(10px, 10px);
}

/* Botão Desabilitado */
.bgs-btn-disable {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.6;
}

.bgs-btn-disable::before {
  background-color: #cccccc !important;
}

.bgs-btn-disable:hover::before {
  background-color: #cccccc !important;
}

.bgs-btn-disable:hover i,
.bgs-btn-disable:hover svg,
.bgs-btn-disable:hover span,
.bgs-btn-disable:hover h2,
.bgs-btn-disable:hover h5 {
  color: #666666 !important;
  fill: #666666 !important;
}

.bgs-btn-disable i,
.bgs-btn-disable svg,
.bgs-btn-disable span,
.bgs-btn-disable h2,
.bgs-btn-disable h5 {
  color: #666666 !important;
  fill: #666666 !important;
}

/* Categorias de Caravana */

/* — Base compartilhada — */
.categoria-caravana-bronze,
.categoria-caravana-prata,
.categoria-caravana-ouro,
.categoria-caravana-diamante,
.categoria-caravana-master {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: bold;
    border-top: 1px solid var(--color-black);
    border-left: var(--border-default);
    border-right: var(--border-default);
}

/* — Cores individuais — */
.categoria-caravana-bronze   { background-color: #E89958; }
.categoria-caravana-prata    { background-color: #B8B7B7; }
.categoria-caravana-ouro     { background-color: #FFA800; }
.categoria-caravana-diamante { background-color: #30BFE7; }
.categoria-caravana-master   { background-color: #E35833; }

/* — Títulos base compartilhada — */
.categoria-caravana-bronze-title,
.categoria-caravana-prata-title,
.categoria-caravana-ouro-title,
.categoria-caravana-diamante-title,
.categoria-caravana-master-title {
    padding: 1rem 0;
    font-weight: bold;
    border-top: 1px solid var(--color-black);
    width: 100%;
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

/* — Cores dos títulos — */
.categoria-caravana-bronze-title   { color: #E89958; }
.categoria-caravana-prata-title    { color: #B8B7B7; }
.categoria-caravana-ouro-title     { color: #FFA800; }
.categoria-caravana-diamante-title { color: #30BFE7; }
.categoria-caravana-master-title   { color: #E35833; }

.caravana-text {
    font-weight: bold;
    text-align: center;
    margin: 0 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
  .footer-logo-img {
    max-width: 150px;
  }
  
  .bgs-button {
    font-size: 1.3rem;
    min-width: 40px;
    min-height: 40px;
  }
}

/* Títulos de credenciamento */

.credenciamento-title-orange {
  color: #fe5400;
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 1rem;
  text-align: left;
  align-self: baseline;
  font-family: 'Gobold', sans-serif;
  text-transform: uppercase;
}

.credenciamento-title-blue {
  color: #00a5ff;
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 1rem;
  text-align: left;
  align-self: baseline;
  font-family: 'Gobold', sans-serif;
  text-transform: uppercase;
}

.credenciamento-text {
  align-self: flex-start;
  text-align-last: left;
}

.credenciamento-list {
  align-self: flex-start;
  width: 100%;
  padding-left: 1rem;
}

.credenciamento-list li {
  font-weight: normal;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Logo customizada */
.custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.site-title {
    margin: 0;
    font-size: 1.75rem;
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
}

.site-title a {
    color: #222;
    text-decoration: none;
}

.site-description {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-navigation {
    margin-top: 1rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #333;
    padding: 0.5rem 0;
    display: block;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* Submenu */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 0.5rem 0;
    flex-direction: column;
    gap: 0;
}

.main-navigation ul li:hover > ul {
    display: flex;
}

.main-navigation ul ul a {
    padding: 0.5rem 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
}

/* Customização do Navbar Toggler (Menu Hambúrguer) */
.navbar-toggler {
    padding: 0.75rem 1rem !important;
    width: 60px;
    height: 50px;
    border: none !important;
    animation: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.navbar-toggler:active {
    border: none !important;
    box-shadow: none !important;
}

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

/* Bootstrap Navbar - Remover efeitos de hover */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1) !important;
    opacity: 1 !important;
    font-size: 1.2rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

/* Centralizar itens do menu com espaçamento uniforme */
.navbar-collapse {
    justify-content: center !important;
    align-items: center;
}

.navbar-nav {
    margin: 0 auto !important;
    gap: 3rem;
    align-items: center;
}

/* Alinhar container do navbar verticalmente */
.navbar .container {
    align-items: center;
    justify-content: space-around;
}

/* Estilo dos submenus dropdown */
.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border-radius: 0;
    top: 100%;
    padding: 0;
    min-width: 200px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

/* Dropdown abre no hover (desktop) */
.navbar-nav .nav-item:hover > .dropdown-menu {
    display: block;
}

/* Dropdown aberto por click */
.navbar-nav .nav-item.show > .dropdown-menu {
    display: block;
}

/* Desktop: fecha quando cursor sai, mesmo com classe .show */
@media (min-width: 992px) {
    .navbar-nav .nav-item:not(:hover) > .dropdown-menu {
        display: none !important;
    }
}

.navbar-nav .dropdown-item {
    color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid #c0c0c0;
    transition: all 0s;
    font-weight: bold;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background-color: #00a5ff;
    color: rgba(255, 255, 255, 1);
    transition: none;
}

/* Remover seta do dropdown */
.navbar-nav .dropdown-toggle::after {
    display: none;
}

/* Mobile/tablet: desabilitar hover, usar apenas click */
@media (max-width: 991.98px) {
    .navbar-nav .nav-item:hover > .dropdown-menu {
        display: none;
    }

    /* Bootstrap 5.3 adiciona .show no próprio .dropdown-menu */
    .navbar-nav .nav-item.show > .dropdown-menu,
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }

    /* Dropdown no mobile/tablet: position static e cores visíveis */
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        width: 100%;
        margin: 0.5rem 0;
        background-color: #ffffff !important;
        border: none;
    }

    .navbar-nav .dropdown-item {
        color: rgba(0, 0, 0, 0.85) !important;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    /* Logo menor no mobile */
    .custom-logo {
        max-height: 50px;
    }
    
    /* Ajustes do menu Bootstrap no mobile */
    .navbar-nav {
        gap: 1rem !important;
        margin-top: 3rem !important;
        align-items: center !important;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        text-align: center;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
    }
    
    /* Dropdown no mobile centralizado */
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        width: 100%;
        margin: 0.5rem 0;
        background-color: #ffffff !important;
        border: none;
    }

    .navbar-nav .dropdown-item {
        color: rgba(0, 0, 0, 0.85) !important;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation.toggled ul {
        display: flex;
    }
    
    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 0.75rem;
    }
}

.trabalhe-conosco-robot {
    position: absolute;
    bottom: -8px;
    right: -30px;
    width: 300px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .bgs-card-white-orange {
        width: 100% !important;
        margin: 0 0 2rem 0 !important;
    }
    #primary .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.sobre-robot {
    position: relative;
    bottom: -70px;
    right: 70px;
    height: auto;
    pointer-events: none;
}

.acao-social-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-top: 15px;
}

/* ==========================================================================
   Página de Ingressos
   ========================================================================== */

/* Estrutura dos cards de ingresso */
.ingresso-title {
    font-size: 1.5rem;
    font-weight: bold;
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ingresso-title .bgs-card-title {
    margin: 0;
    text-align: center;
}

.ingresso-dia {
    font-size: 0.8rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingresso-dia p {
    margin: 0;
}

.ingresso-destaque {
    min-height: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
}

.ingresso-destaque small {
    display: block;
    margin-bottom: 0.25rem;
    text-align: center;
}

.link-beneficios {
    font-size: 0.9rem;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.link-beneficios:hover {
    opacity: 0.7;
    color: inherit;
    text-decoration: none;
}

.bgs-card-white-blue .link-beneficios,
.bgs-card-white-orange .link-beneficios {
    color: #000;
}

.bgs-card-blue-orange .link-beneficios,
.bgs-card-black-orange .link-beneficios {
    color: #fff;
}

.ingresso-valor {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.ingresso-meia {
    font-size: 0.85rem;
    min-height: 20px;
}

.ingresso-descricao {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.ingresso-botao-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

/* Ícones de benefícios */
.ingresso-icones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.icone-beneficio {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.icone-separador {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 5px;
}

.bgs-card-white-blue .icone-separador,
.bgs-card-white-orange .icone-separador {
    color: #000;
}

.bgs-card-blue-orange .icone-separador,
.bgs-card-black-orange .icone-separador {
    color: #fff;
}

/* Bordas coloridas */
.border-blue-soft {
    border-bottom: 1px solid rgba(0, 165, 255, 0.3);
}

.border-orange-soft {
    border-bottom: 1px solid rgba(254, 84, 0, 0.3);
}

/* Cores de texto para cards */
.bgs-card-white-blue .ingresso-title .bgs-card-title,
.bgs-card-white-blue .ingresso-dia p,
.bgs-card-white-blue .ingresso-valor,
.bgs-card-white-blue .ingresso-descricao,
.bgs-card-white-orange .ingresso-title .bgs-card-title,
.bgs-card-white-orange .ingresso-dia p,
.bgs-card-white-orange .ingresso-valor,
.bgs-card-white-orange .ingresso-descricao {
    color: #000;
}

.bgs-card-white-blue .ingresso-meia,
.bgs-card-white-orange .ingresso-meia {
    color: #666;
}

.bgs-card-white-blue .ingresso-descricao,
.bgs-card-white-orange .ingresso-descricao {
    color: #333;
}

.bgs-card-blue-orange .ingresso-title .bgs-card-title,
.bgs-card-blue-orange .ingresso-dia p,
.bgs-card-blue-orange .ingresso-valor,
.bgs-card-blue-orange .ingresso-meia,
.bgs-card-blue-orange .ingresso-descricao,
.bgs-card-black-orange .ingresso-title .bgs-card-title,
.bgs-card-black-orange .ingresso-dia p,
.bgs-card-black-orange .ingresso-valor,
.bgs-card-black-orange .ingresso-meia,
.bgs-card-black-orange .ingresso-descricao {
    color: #fff;
}

/* Tabela de lotes */
.lotes-separator-blue {
    margin-top: auto;
}

.lotes-separator-orange {
    margin-top: auto;
}

.lote-cell-blue {
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0.15rem;
}

.lote-cell-blue:nth-child(3n+1) {
    border-left: 1px solid rgba(0, 0, 0, 0.3);
}

.lote-cell-blue:nth-child(-n+3) {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.lote-cell-orange {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.15rem;
}

.lote-cell-orange:nth-child(3n+1) {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lote-cell-orange:nth-child(-n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.bgs-card-white-blue .lote-cell-blue,
.bgs-card-white-orange .lote-cell-orange {
    color: #000;
}

.bgs-card-blue-orange .lote-cell-orange,
.bgs-card-black-orange .lote-cell-orange {
    color: #fff;
}

.lote-numero {
    font-size: 0.7rem;
    font-weight: normal;
    display: block;
}

.lote-valor {
    font-size: 1rem;
    font-weight: bold;
    display: block;
}

/* Botões customizados */
.btn-orange-black {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transform: skewX(-5deg);
    padding: 0.75rem 2rem;
    border: none;
    outline: none;
    cursor: pointer;
}

.btn-orange-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fe5400;
    border: 3px solid var(--color-black);
    z-index: 0;
}

.btn-orange-black::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background-color: var(--color-black);
    z-index: -1;
}

.btn-orange-black span {
    position: relative;
    z-index: 1;
    color: #fff;
    transform: skewX(5deg);
}

.btn-orange-black:hover::before {
    background-color: #000;
}

.btn-orange-black:hover::after {
    background-color: #fe5400;
}

.btn-orange-black:active::before {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background-color: #000;
}

.btn-orange-black:active span {
    transform: skewX(5deg) translate(8px, 8px);
}

.btn-white-orange {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transform: skewX(-5deg);
    padding: 0.75rem 2rem;
}

.btn-white-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 3px solid #000;
    z-index: 0;
}

.btn-white-orange::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background-color: #fe5400;
    z-index: -1;
}

.btn-white-orange span {
    position: relative;
    z-index: 1;
    color: #000;
    transform: skewX(5deg);
}

.btn-white-orange:hover::before {
    background-color: #fe5400;
}

.btn-white-orange:hover::after {
    background-color: #fff;
}

.btn-white-orange:hover span {
    color: #fff;
}

.btn-white-orange:active::before {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background-color: #fe5400;
}

.btn-white-orange:active span {
    color: #fff;
    transform: skewX(5deg) translate(8px, 8px);
}

.btn-white-black {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transform: skewX(-5deg);
    padding: 0.75rem 2rem;
}

.btn-white-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 3px solid #000;
    z-index: 0;
}

.btn-white-black::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background-color: #000;
    z-index: -1;
}

.btn-white-black span {
    position: relative;
    z-index: 1;
    color: #000;
    transform: skewX(5deg);
}

.btn-white-black:hover::before {
    background-color: #000;
}

.btn-white-black:hover::after {
    background-color: #fff;
}

.btn-white-black:hover span {
    color: #fff;
}

.btn-white-black:active::before {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background-color: #000;
}

.btn-white-black:active span {
    color: #fff;
    transform: skewX(5deg) translate(8px, 8px);
}

/* Produtos Oficiais - Carrossel */
.carousel-container-flex {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    min-height: 350px;
}

.produto-img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.produto-desc {
    font-size: 0.9rem;
}

.produto-preco {
    color: #ffffff;
}

.produto-instrucoes {
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.info-lista li {
    margin-bottom: 0.6rem;
}

#carouselProdutos {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beneficios-icon{
  height: 30px;
  margin: 0 0.625rem;
}

/* Modal de Benefícios */
#modalBeneficios .modal-content {
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 0;
}

#modalBeneficios .modal-header {
    background-color: #00a5ff;
    color: #fff;
    border-bottom: 3px solid #000;
    padding: 1.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#modalBeneficios .modal-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
}

#modalBeneficios .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#modalBeneficios .modal-body {
    padding: 2rem;
    min-height: 200px;
}

#modalBeneficios .modal-footer {
    border-top: 2px solid #000;
    padding: 1rem 1.5rem;
}

#modalBeneficios .btn-secondary {
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

#modalBeneficios .btn-secondary:hover {
    background-color: #fe5400;
    border-color: #fe5400;
    color: #fff;
}

/* Modais de Ingressos */
.modal-bgs .modal-content {
    background-color: var(--color-white);
    border: var(--border-default);
    border-radius: 0;
}

.modal-bgs .modal-header {
    background-color: var(--color-blue);
    color: var(--color-white);
    border-bottom: var(--border-default);
    padding: 1.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.modal-bgs .modal-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
}

.modal-bgs .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.modal-bgs .modal-body {
    padding: 2rem;
    min-height: 200px;
}

.modal-bgs .modal-footer {
    border-top: 2px solid var(--color-black);
    padding: 1rem 1.5rem;
    background-color: var(--color-blue) ;
}

.modal-bgs .btn-secondary {
    background-color: var(--color-black);
    border: 2px solid var(--color-black);
    color: var(--color-white);
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    transition: all var(--transition-default);
}

.modal-bgs .btn-secondary:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
}

.modal-bgs .modal-body .bi-check-circle-fill {
    color: var(--color-orange) !important;
}

/* Badge de Desconto - Orange Red */
.discount-badge-orange-red {
    position: absolute;
    top: 150px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-20deg);
    z-index: 10;
    font-weight: bold;
    line-height: 1;
}

.discount-badge-orange-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-orange);
    border-radius: 50%;
    z-index: 0;
}

.discount-badge-orange-red::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: -3px;
    bottom: -3px;
    background-color: #000;
    border-radius: 50%;
    z-index: -1;
}

.discount-badge-orange-red .discount-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.discount-badge-orange-red .discount-value {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 3px;
    color: #fff;
}

.discount-badge-orange-red .discount-text {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

/* Badge de Desconto - White Orange */
.discount-badge-white-orange {
    position: absolute;
    top: 150px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    z-index: 10;
    font-weight: bold;
    line-height: 1;
}

.discount-badge-white-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-radius: 50%;
    z-index: 0;
}

.discount-badge-white-orange::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: -3px;
    bottom: -3px;
    background-color: #fe5400;
    border-radius: 50%;
    z-index: -1;
}

.discount-badge-white-orange .discount-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000;
}

.discount-badge-white-orange .discount-value {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 3px;
    color: #000;
}

.discount-badge-white-orange .discount-text {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
}

/* App Download Button - Efeito similar ao bgs-button sem inclinação e sem troca de cor */
.app-download-button {
    position: relative;
    display: inline-block;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 0;
    transition: all 0.3s ease;
}

.app-download-button::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    background-color: #fe5400;
    z-index: -1;
}

.app-download-button img {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.3s ease;
}

.app-download-button:hover::after {
    text-decoration: none;
    background-color: #00a5ff;
}

.app-download-button:active::before {
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
}

.app-download-button:active::after {
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
}

.app-download-button:active img {
    transform: translate(5px, 5px);
}

/* ============================================
   Classes para Guia do Evento e Assessoria
   ============================================ */

/* Logos e Imagens */
.logo-assessoria {
    max-width: 300px;
    margin-bottom: 1.875rem;
}

.app-mockup-img {
    max-width: 100%;
    height: auto;
}

.app-download-img {
    max-width: 200px;
    width: 100%;
}

/* Títulos e Textos dos Cards */
.card-title-black {
    font-weight: bold;
    color: #000;
    font-size: 1.5rem;
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
}

.card-text-black {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
}

.card-info-text {
    color: #000;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Links nos Cards */
.card-link-orange {
    color: #fe5400;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

.card-link-orange:hover {
    color: #d44700;
    text-decoration: underline;
}

/* Ícones nos Cards */
.card-icon-large {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.icon-check-orange {
    color: #fe5400;
    margin-right: 0.625rem;
}

/* Seção do App */
.app-section-title {
    font-weight: bold;
    color: #000;
    text-align: center;
    font-family: 'Gobold', sans-serif;
    text-transform: uppercase;
}

.app-section-text {
    color: #000;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.app-features-list {
    color: #000;
    font-size: 1rem;
    line-height: 2;
    list-style-type: none;
    padding-left: 0;
}

/* ==========================================================================
   Meet & Greet Page
   ========================================================================== */

.meet-greet-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.meet-greet-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.meet-greet-desc {
    font-size: 1.0625rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: left;
    text-align-last: left;
}

@media (max-width: 991px) {
    .meet-greet-title {
        text-align: center !important;
    }
    
    .meet-greet-desc {
        text-align: center !important;
        text-align-last: center !important;
    }
}

/* Modifier: padding reduzido para cards de imagem */
.bgs-card-img {
    padding: 0.75rem;
}

.bgs-card-photo {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Divisor */
.meet-cta-robot {
    min-width: 7.5rem;
}

.meet-cta-robot-img {
    height: 8.125rem;
    width: auto;
    display: block;
    margin-bottom: -0.75rem;
    position: absolute;
    top: -20px;
    left: -162px;
}

@media (max-width: 1369px) {
    .meet-cta-robot-img {
        display: none !important;
    }
}


.meet-cta-copo-img {
    position: absolute;
    left: -25px;
    top: -25px;
    height: 140%;
    width: auto;
    display: block;
    pointer-events: none;
    z-index: 2;
    object-fit: cover;
}

.cta-divisor-card {
    padding-left: calc(140px + 2rem);
}

@media (min-width: 768px) and (max-width: 1199px) {
    .meet-cta-copo-img {
        left: 0;
        top: 0;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .meet-cta-copo-img {
        position: relative;
        left: auto;
        top: auto;
        height: 160px;
        width: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto 2rem;
        order: 0;
    }

    .cta-divisor-card {
        padding-left: 2rem;
        padding-bottom: 2rem;
    }

    .cta-divisor-card > .row {
        order: 1;
    }

    .meet-cta-title,
    .meet-cta-desc {
        text-align: center !important;
        text-align-last: center !important;
    }

    .meet-greet-title {
        font-size: 1.6rem;
    }
}

.meet-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.meet-cta-desc {
    color: var(--color-white);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    text-align-last: left;
}

/* CTA B2B DIVISOR */

.b2b-cta-robo-img {
    position: absolute;
    left: -50px;
    top: -50px;
    height: 150%;
    width: auto;
    display: block;
    pointer-events: none;
    z-index: 2;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .b2b-cta-robo-img {
        left: -10px;
        top: 0;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .b2b-cta-robo-img {
        position: relative;
        left: auto;
        top: auto;
        height: 160px;
        width: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto 2rem;
        order: 0;
    }
}

/* ==========================================================================
   Caravanas Cadastradas Page
   ========================================================================== */

/* Aviso Legal */
.aviso-legal-text {
    text-align: justify;
    line-height: 1.6;
}

/* Filtro de Estados */
.state-filter-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.state-filter-container select {
    border: 3px solid #000;
    background-color: white;
    color: #000;
    font-weight: bold;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.state-filter-container select:focus {
    border-color: #00a5ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 165, 255, 0.25);
}

.state-filter-label {
    font-size: 1.2rem;
}

/* Estado Header */
.estado-header {
    color: white;
    padding: 1rem;
    text-align: center;
    margin: -1.5rem -1.5rem 2rem -1.5rem;
    border-radius: 0;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
}

.estado-header-blue {
    background-color: #00a5ff;
}

.estado-header-orange {
    background-color: #fe5400;
}

/* Caravana Item */
.caravana-item {
    border-bottom: 2px solid #e0e0e0;
}

.caravana-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Caravana Name */
.caravana-name-blue {
    color: #00a5ff;
}

.caravana-name-orange {
    color: #fe5400;
}

/* Cidades */
.caravana-cidades {
    font-size: 1rem;
    text-align-last: auto;
}

/* Icon Circle */
.icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.icon-circle-blue {
    background-color: #00a5ff;
}

.icon-circle-orange {
    background-color: #fe5400;
}

/* No Caravanas */
.no-caravanas-text {
    font-size: 1.2rem;
    margin: 0;
}

.no-caravanas-link-blue {
    color: #00a5ff;
    font-weight: bold;
    text-decoration: underline;
}

.no-caravanas-link-orange {
    color: #fe5400;
    font-weight: bold;
    text-decoration: underline;
}

/* Animação suave ao rolar */
html {
    scroll-behavior: smooth;
}

/* Responsividade Caravanas */
@media (max-width: 768px) {
    .state-filter-container {
        max-width: 100%;
    }
    
    .estado-header h2 {
        font-size: 1.5rem;
    }
    
    .caravana-item h4 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Lista de Marcas (Patrocinadores, Expositores e Parceiros)
   ========================================================================== */
   
.lista-marcas-section {
    background-color: #fff;
}

.lista-marcas-section h2 {
    color: var(--color-black);
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
}

/* Fundo alternado para a seção de parceiros */
.lista-marcas-section.bg-light {
    background-color: #f8f9fa !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .lista-marcas-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .lista-marcas-section h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Trabalhe Conosco
   ========================================================================== */
   

.whr-title a {
    color: var(--color-orange)
}

.whr-item {
    margin-bottom: 2rem;
}

/* ==========================================================================
   Press Kit
   ========================================================================== */

.pk-sections-wrap {
    gap: 1rem;
}

.pk-section {
    padding: 0;
}

.pk-section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--color-black);
    position: relative;
    padding-bottom: 0.75rem;
}

/* Thumb do card */
.pk-card-thumb {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 1rem;
    background-color: #cfcfcf;
    flex-shrink: 0;
}

.pk-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* Galeria — layout horizontal */
.pk-galeria-card {
    align-items: stretch;
}

.pk-galeria-img-col {
    flex: 0 0 40%;
    max-width: 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pk-galeria-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .pk-galeria-card {
        flex-direction: column !important;
    }
    .pk-galeria-img-col {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 220px;
    }
}

/* Corpo do card */
.pk-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.pk-card-title {
    text-align: center;
    margin-bottom: 0.75rem;
    color: #000 !important;
    text-transform: uppercase;
}

.pk-card-desc {
    line-height: 1.55;
    color: #333;
    text-align: center;
}

/* Ação / botão */
.pk-card-action {
    padding-top: 1.25rem;
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Hospedagem — Hotel Cards
   ========================================================================== */

.bgs-hotel-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-white);
    color: var(--color-black);
    position: relative;
    overflow: visible;
}

.bgs-hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    border: var(--border-default);
    background-color: var(--color-white);
    pointer-events: none;
}

.bgs-hotel-card > * {
    position: relative;
    z-index: 1;
}

.bgs-hotel-card::after {
    content: '';
    position: absolute;
    top: var(--card-shadow-offset);
    left: var(--card-shadow-offset);
    right: calc(-1 * var(--card-shadow-offset));
    bottom: calc(-1 * var(--card-shadow-offset));
    z-index: -1;
    background-color: var(--color-orange);
}

.bgs-hotel-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.bgs-hotel-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.bgs-hotel-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bgs-hotel-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bgs-hotel-card-stars {
    color: var(--color-orange);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.bgs-hotel-card-meta {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
}

.bgs-hotel-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.bgs-hotel-amenity {
    background: rgba(254, 84, 0, 0.08);
    border: 1px solid var(--color-orange);
    color: var(--color-black);
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 2px;
    white-space: nowrap;
}

.bgs-hotel-card-desc {
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 1.25rem;
    flex: 1;
    line-height: 1.6;
}

.bgs-hotel-cupom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px dashed var(--color-orange);
    padding: 0.6rem 0.9rem;
    margin-bottom: 1.25rem;
}

.bgs-hotel-cupom-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.bgs-hotel-cupom-code {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-orange);
    letter-spacing: 0.2em;
    border-left: 2px solid var(--color-orange);
    padding-left: 0.75rem;
    font-family: Roboto, sans-serif;
}

.bgs-hotel-card-footer {
    margin-top: auto;
}

.bgs-hotel-card-footer .btn-orange-black {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .bgs-hotel-card-meta {
        flex-direction: column;
        gap: 0.2rem;
    }
}