@font-face {
    font-family: 'Market W03 Bold';
    src: url('../fonts/Market W03 Bold.ttf') format('truetype');
    font-weight: bold; font-style: normal; font-display: swap;
}

:root { --orange:#F46A1A; --orange-dark:#D4560E; --yellow:#FFB400; --red:#C0001C; --dark:#0d0d0d; --dark2:#1a1a1a; }
* { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Montserrat', sans-serif; background: #fff; color: #111; font-size: 1rem; }
p { font-size: 1rem; line-height: 1.4; }
.ticket-features li { font-size: 1rem !important; }

/* ── NAVBAR ─────────────────────────────────── */
#navbar { position: absolute; top: 0; left: 0; width: 100%; background: transparent; padding: 0; z-index: 100; }
#navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.logo { max-width: 250px; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 80px; padding: 0; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: color .2s; padding: 0 5px; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-links .has-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; transition: transform .2s; margin-top: 1px; }
.nav-links .has-dropdown:hover > a::after, .nav-links .has-dropdown.open > a::after { transform: rotate(-180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 230px; background: rgba(13,13,13,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 8px 0; list-style: none; margin: 0; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; z-index: 200; }
.nav-links .has-dropdown:hover .nav-dropdown, .nav-links .has-dropdown.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown li a { display: block; padding: 9px 18px; font-size: .9rem; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.75); text-transform: uppercase; white-space: nowrap; border-left: 2px solid transparent; transition: color .15s, border-color .15s, background .15s; }
.nav-dropdown li a:hover { color: var(--orange); border-left-color: var(--orange); background: rgba(244,106,26,.08); }
.nav-dropdown::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 6px solid rgba(255,255,255,.1); }
.nav-burger { display: none; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 6px; padding: 6px 10px; cursor: pointer; color: #fff; font-size: 1.1rem; }

/* date card */
.nav-date-card { background: #fff; border: 2px solid #f98b2c; border-radius: 10px; padding: 10px 6px 16px; display: flex; flex-direction: column; align-items: center; gap: 0; min-width: 160px; box-shadow: 0 4px 18px rgba(0,0,0,.35); overflow: visible; }
.nav-date-card .venue-tag-sm { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .05em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; margin-bottom: 4px; color: #F93B0E; }
.nav-date-card .date-main { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1.05; color: #111; text-align: center; text-transform: uppercase; background: linear-gradient(135deg,#d95e17,#FFB040); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.date-main strong { font-family: 'Market W03 Bold','Bebas Neue',sans-serif; font-size: 2.2rem; }
.nav-date-card .badge-orange-sm { margin-top: 7px; margin-left: -20px; margin-right: -20px; font-size: 1rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: linear-gradient(90deg,#F46A1A,#FFB040); color: #fff; padding: 6px 20px; border-radius: 6px; display: inline-flex; align-items: center; gap: 8px; width: calc(100% + 40px); justify-content: center; }

/* ── HERO ─────────────────────────────── */
#hero { position: relative; height: 75vh; min-height: 600px; overflow: hidden; }
.hero-brush-left, .hero-brush-right { position: absolute; top: 0; bottom: 0; width: 350px; z-index: 9; pointer-events: none; }
.hero-brush-left  { left: 0;  background: url('../img/brush_left.png') left bottom no-repeat; background-size: contain; }
.hero-brush-right { right: 0; background: url('../img/brush_right.png') left bottom no-repeat; background-size: cover; }
.hero-brush-bottom { position: absolute; bottom: -2px; left: 0; right: 0; height: 70px; z-index: 6; pointer-events: none; background: url('../img/divisor_topo.png') bottom/100% 100% no-repeat; }
#heroCarousel { height: 100%; width: 100%; position: absolute; inset: 0; }
#heroCarousel .carousel-inner, #heroCarousel .carousel-item { height: 100%; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.5); transform: scale(1); transition: transform 8s ease; }
#heroCarousel .carousel-item.active .slide-bg { transform: scale(1.07); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right,rgba(13,13,13,.45) 35%,transparent 75%), linear-gradient(to top,rgba(13,13,13,.15) 0%,transparent 55%); }
.slide-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 80px 0; align-items: center; text-align: center; }
.hero-eyebrow { background: linear-gradient(135deg,#F46A1A,#FFB040); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: .75rem; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 10px; }
.hero-title { font-family: 'Bebas Neue',sans-serif; font-size: clamp(3rem,4vw,6.5rem); color: #fff; line-height: .95; margin-bottom: 0; }
.hero-title .brasil { color: var(--orange); -webkit-text-stroke: 2px var(--orange-dark); text-shadow: 0 4px 24px rgba(244,106,26,.5); font-size: clamp(4rem,6vw,9rem); }
.hero-sub { color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-top: 14px; }
#heroCarousel .carousel-indicators { bottom: 16px; gap: 6px; }
#heroCarousel .carousel-indicators button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); border: none; transition: width .3s,background .3s; margin: 0; }
#heroCarousel .carousel-indicators button.active { background: #F46A1A; width: 26px; border-radius: 4px; }
#heroCarousel .carousel-control-prev, #heroCarousel .carousel-control-next { width: 42px; height: 42px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; top: 50%; transform: translateY(-50%); bottom: auto; opacity: .85; transition: background .2s; }
#heroCarousel .carousel-control-prev:hover, #heroCarousel .carousel-control-next:hover { background: rgba(244,106,26,.6); }
#heroCarousel .carousel-control-prev { left: auto; right: 76px; }
#heroCarousel .carousel-control-next { right: 22px; }
#heroCarousel .carousel-item.active .hero-eyebrow { animation: fadeInLeft .7s .1s both; }
#heroCarousel .carousel-item.active .hero-title { animation: fadeInUp .7s .25s both; }
#heroCarousel .carousel-item.active .hero-sub { animation: fadeInUp .7s .4s both; }
#heroCarousel .carousel-item.active .slide-btns { animation: fadeInUp .7s .55s both; }

/* ── BUTTONS ──────────────────────────── */
.btn-orange { background: linear-gradient(135deg,#F46A1A 0%,#FFB040 100%); border: none; color: #fff; font-size: 1.25rem; letter-spacing: .12em; text-transform: uppercase; padding: 14px 28px; border-radius: 8px; transition: filter .2s,transform .15s,box-shadow .2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; box-shadow: 0 4px 18px rgba(244,106,26,.4); font-family: 'Bebas Neue',sans-serif; }
.btn-orange:hover { filter: brightness(1.1); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,106,26,.55); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; letter-spacing: .12em; text-transform: uppercase; padding: 12px 26px; border-radius: 8px; transition: border-color .2s,background .2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'Bebas Neue',sans-serif; font-size: 1.25rem; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn-outline-dark-custom { border: 1.5px solid #333; color: #333; background: transparent; font-size: 1.25rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 10px 22px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: background .2s,color .2s; font-family: 'Bebas Neue',sans-serif; }
.btn-outline-dark-custom:hover { background: #111; color: #fff; }

/* ── SECTION COMMONS ──────────────────── */
section { padding: 80px 0; }
.section-label { font-family: 'Market W03 Bold',sans-serif; background: linear-gradient(135deg,#F46A1A,#FFB040); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.5rem; font-weight: bold; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; display: inline-block; }
.section-title { font-family: 'Bebas Neue',sans-serif; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.05; margin-bottom: 0; }
.section-title small { font-size: 2.5rem; }
.section-title::after { content: ''; display: block; height: 10px; width: 55%; margin-top: 10px; background: url('../img/brush_title.png') left center / 100% 100% no-repeat; }
.text-center .section-title::after { margin-left: auto; margin-right: auto; }
.section-title em { font-style: normal; font-family: 'Market W03 Bold','Bebas Neue',sans-serif; background: linear-gradient(135deg,#F46A1A,#FFB040); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; padding: 0 4px; }
#gallery .section-title em, #gallery .section-label { background: linear-gradient(135deg,#c82500,#ff4200); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── ABOUT ────────────────────────────── */
#about { background: #fff; padding-top: 100px; }
.feature-icon-wrap { width: 84px; height: 84px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.feature-icon-wrap i { font-size: 4rem; background: linear-gradient(135deg,#F46A1A,#FFB040); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.feature-label { font-size: 1rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-align: center; margin-top: 6px; }
.feature-desc { font-size: .85rem; color: #888; margin-top: 6px; }
.divider-v { width: 1px; background: #e5e5e5; align-self: stretch; }
.divider-v-lg { height: 260px; }
.about-desc { color: #555; line-height: 1.8; }
.about-highlight { font-weight: 700; color: var(--orange); margin-top: 10px; }

/* ── GALLERY ──────────────────────────── */
#gallery { background: #ffd819; }
.brush-amarelo { position: absolute; margin-top: -100px; left: 0; right: 0; height: 25px; z-index: 6; pointer-events: none; background: url('../img/divisor-amarelo.png') top/100% 100% no-repeat; }
.brush-bege { position: absolute; margin-top: -100px; left: 0; right: 0; height: 25px; z-index: 6; pointer-events: none; background: url('../img/divisor-bege.png') top/100% 100% no-repeat; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 240px 200px 200px; gap: 8px; border-radius: 16px; overflow: hidden; }
.gallery-grid .gi-1 { grid-column: 1; grid-row: 1/3; }
.gallery-grid .gi-2 { grid-column: 2; grid-row: 1; }
.gallery-grid .gi-3 { grid-column: 3; grid-row: 1; }
.gallery-grid .gi-4 { grid-column: 4; grid-row: 1/3; }
.gallery-grid .gi-5 { grid-column: 2/4; grid-row: 2; }
.gallery-grid .gi-6 { grid-column: 1; grid-row: 3; }
.gallery-grid .gi-7 { grid-column: 2; grid-row: 3; }
.gallery-grid .gi-8 { grid-column: 3; grid-row: 3; }
.gallery-grid .gi-9 { grid-column: 4; grid-row: 3; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease,filter .45s ease; }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(.85); }

/* ── PÁGINA FOTOS ─────────────────────── */
.fotos-ano-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .04em; color: #111; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }
.fotos-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 6px; grid-auto-flow: dense; }
.fotos-item { position: relative; overflow: hidden; border-radius: 8px; background: #eee; }
.fotos-grid .fotos-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
.fotos-item.fotos-hidden { display: none; }
.fotos-thumb { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; transition: transform .35s ease, filter .35s ease; }
.fotos-item:hover .fotos-thumb { transform: scale(1.07); filter: brightness(.8); }
.btn-orange-outline { display: inline-flex; align-items: center; gap: 6px; padding: 10px 28px; border: 2px solid var(--orange); color: var(--orange); background: transparent; border-radius: 40px; font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s; }
.btn-orange-outline:hover { background: var(--orange); color: #fff; }

/* Lightbox */
.lb-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lb-overlay.lb-active { display: flex; }
.lb-img-wrap { max-width: 92vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 4px; box-shadow: 0 8px 60px rgba(0,0,0,.6); }
.lb-close { position: fixed; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; z-index: 10000; opacity: .8; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 2.8rem; line-height: 1; cursor: pointer; padding: 8px 16px; border-radius: 8px; z-index: 10000; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

@media (max-width: 767px) {
    .fotos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fotos-grid { grid-template-columns: 1fr; }
    .fotos-grid .fotos-item:nth-child(7n+1) { grid-column: span 1; grid-row: span 1; }
    .lb-nav { font-size: 2rem; padding: 6px 12px; }
}

/* ── STATS ────────────────────────────── */
#stats { background: var(--dark); position: relative; overflow: hidden; }
#stats::before { content: ''; position: absolute; inset: 0; background: url('../img/hero1.jpg') center/cover no-repeat; opacity: .15; }
.stats-title { font-family: 'Bebas Neue',sans-serif; font-size: clamp(2rem,4vw,3.5rem); color: #fff; line-height: 1.05; }
.stats-title em { font-style: normal; background: linear-gradient(135deg,#F46A1A,#FFB040); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-circle { width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 6px; position: relative; }
.stat-circle::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from -90deg,#F46A1A 0%,#FFB040 var(--pct,0%),rgba(255,255,255,.15) var(--pct,0%)); -webkit-mask: radial-gradient(farthest-side,transparent calc(100% - 7px),#fff calc(100% - 7px)); mask: radial-gradient(farthest-side,transparent calc(100% - 7px),#fff calc(100% - 7px)); }
.stat-circle.heart-circle::before { background: conic-gradient(from -90deg,#e74c3c 0%,#ff6b6b 100%); }
.stat-circle .num { font-family: 'Bebas Neue',sans-serif; font-size: 2.6rem; color: #fff; line-height: 1; }
.stat-circle .heart-icon { color: var(--orange); font-size: 2rem; }
.stat-label { color: rgba(255,255,255,.75); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-align: center; }
.stat-sub { color: rgba(255,255,255,.35); font-size: .6rem; text-align: center; margin-top: 4px; }

/* ── TESTIMONIALS ─────────────────────── */
#testimonials { background: #FEFBF3; padding-bottom: 150px; }
#testimonialsCarousel .carousel-item { padding: 0 52px; }
.testimonial-card { background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 28px 24px; box-shadow: 0 6px 32px rgba(0,0,0,.08); height: 100%; position: relative; margin: 10px 0; }
.testimonial-card .avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--orange); flex-shrink: 0; }
.testimonial-card .name { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.testimonial-card .city { color: #888; font-size: .85rem; }
.testimonial-card .stars { color: var(--orange); font-size: 1rem; }
.testimonial-card p { font-size: 1rem; color: #444; line-height: 1.75; margin-top: 16px; }
.testimonial-card .quote-icon { position: absolute; bottom: 18px; left: 24px; font-size: 3rem; color: var(--orange); opacity: .15; line-height: 1; }
#testimonialsCarousel .carousel-control-prev, #testimonialsCarousel .carousel-control-next { width: 44px; height: 44px; background: rgba(244,106,26,.12); border: 2px solid var(--orange); border-radius: 50%; top: 50%; transform: translateY(-50%); bottom: auto; opacity: 1; transition: background .2s; }
#testimonialsCarousel .carousel-control-prev:hover, #testimonialsCarousel .carousel-control-next:hover { background: var(--orange); }
#testimonialsCarousel .carousel-control-prev { left: 0; }
#testimonialsCarousel .carousel-control-next { right: 0; }
#testimonialsCarousel .carousel-control-prev-icon, #testimonialsCarousel .carousel-control-next-icon { background-image: none; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--orange); font-size: 1rem; }
#testimonialsCarousel .carousel-indicators { position: static; margin: 24px 0 0; gap: 6px; }
#testimonialsCarousel .carousel-indicators button { width: 10px; height: 10px; border-radius: 50%; background: #ddd; border: none; transition: background .2s,width .3s; margin: 0; }
#testimonialsCarousel .carousel-indicators button.active { background: var(--orange); width: 28px; border-radius: 4px; }

/* ── TICKETS ──────────────────────────── */
#tickets { padding: 80px 0; background: #fff2d6; }
.ticket-card { border-radius: 8px; overflow: hidden; box-shadow: 0 16px 56px rgba(0,0,0,.35); position: relative; transition: transform .3s,box-shadow .3s; color: #fff; }
.ticket-card:hover { transform: translateY(-8px); box-shadow: 0 24px 72px rgba(0,0,0,.45); }
.ticket-card.camarote { background: linear-gradient(180deg,#F46A1A 0%,#c0392b 75%); }
.ticket-card.pista { background: linear-gradient(180deg,#F46A1A 0%,#f5a100 75%); }
.ticket-photo { position: relative; aspect-ratio: 700 / 320; overflow: hidden; }
.ticket-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ticket-card:hover .ticket-photo img { transform: scale(1.05); }
.ticket-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,0,0,.15) 0%,rgba(0,0,0,.55) 100%); }
.ticket-card-inner { padding: 24px 28px 16px; }
.lote-tag { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35); border-radius: 8px; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; color: #fff; margin: 16px auto 0; width: fit-content; }
.lote-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.ticket-name { font-family: 'Bebas Neue',sans-serif; font-size: 2.4rem; line-height: 1; margin-bottom: 0; }
.ticket-price { font-family: 'Bebas Neue',sans-serif; font-size: 4rem; line-height: 1; color: #fff; }
.ticket-price small { font-size: 1.8rem; }
.ticket-installment { font-size: 1rem; color: rgba(255,255,255,.75); margin-top: 2px; }
.ticket-installment strong { color: #fff; font-size: 1.8rem; font-family: 'Bebas Neue',sans-serif; }
.ticket-features { list-style: none; padding: 0; margin: 16px 0 0; font-size: .85rem; }
.ticket-features li { padding: 5px 0; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.92); border-bottom: 1px solid rgba(255,255,255,.12); }
.ticket-features li:last-child { border-bottom: none; }
.ticket-features li i { color: #fff; font-size: .8rem; }
.price-row { display: flex; align-items: center; justify-content: center; gap: 0; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.5); }
.price-row-sep { width: 1px; height: 36px; background: #ddd; margin: 0 25px; flex-shrink: 0; }
.card-footer-white { background: #fff; overflow: hidden; }
.btn-ticket { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 18px; font-size: 1.5rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; color: #fff; transition: filter .2s; font-family: 'Bebas Neue',sans-serif; }
.ticket-card.camarote .btn-ticket { background: linear-gradient(0deg,#b83200 -100%,#7b1a1a 100%); }
.ticket-card.pista .btn-ticket { background: linear-gradient(180deg,#d75b03 0%,#f5a100 180%); }
.btn-ticket:hover { filter: brightness(1.12); color: #fff; }
.btn-ticket i { font-size: 1.1em; rotate: 45deg; }
.icon-pay { max-width: 38px; }
.forma-pag { display: flex; align-items: center; justify-content: center; gap: 5px; }
.payment-row { display: flex; gap: 0; margin: 20px 0; }
.pay-badge { padding: 0 8px; text-align: center; flex: 1; color: #111; line-height: 1.25; border-right: 1px solid #9e9e9e; }
.pay-badge:last-child { border-right: none; }
.pay-badge .big { font-family: 'Bebas Neue',sans-serif; font-size: 2rem; display: block; line-height: 1; color: #111; }
.pay-badge .pay-label { font-size: .85rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; color: #515151; display: block; }
.card-payment-info .section-title { text-align: center; margin-bottom: 12px; }
.card-payment-info .section-title::after { margin: 0 auto; }

/* ── TRUST BAR ────────────────────────── */
#trust-bar { background: linear-gradient(135deg,#F46A1A,#FFB040); padding: 14px 0; }
#trust-bar .trust-item { color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.trust-sep { color: rgba(255,255,255,.4); }

/* ── PATROCINADORES ───────────────────── */
#patrocinadores { background: #fff; padding: 48px 0 180px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.patrocinadores-label { text-align: center; font-size: .7rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: #bbb; margin-bottom: 28px; }
.patrocinadores-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px 60px; }
.pat-item { display: flex; align-items: center; justify-content: center; }
.pat-item img { max-height: 56px; max-width: 160px; width: auto; filter: grayscale(100%) opacity(.55); transition: filter .3s; object-fit: contain; }
.pat-item img:hover { filter: grayscale(0%) opacity(1); }

/* ── NUMBERS BAR ──────────────────────── */
#numbers-bar { background: url('../img/bg-destaques.png'); padding: 70px 0; background-size: 100% 100%; position: absolute; width: 100%; margin-top: -140px; }
.num-item .big-num { font-family: 'Bebas Neue',sans-serif; font-size: 2.8rem; line-height: 1; color: #fff; }
.num-item .big-label { color: rgba(255,255,255,.85); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }

/* ── FOOTER ───────────────────────────── */
#footer { background: #FEFBF3; padding: 60px 0 30px; }
#footer .footer-col-title { color: var(--orange); font-size: .8rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }
#footer ul { list-style: none; padding: 0; margin: 0; }
#footer ul li { margin-bottom: 8px; }
#footer ul li a { color: rgba(0,0,0,.55); font-size: .9rem; text-decoration: none; transition: color .2s; }
#footer ul li a:hover { color: var(--orange); }
#footer .social-links { display: flex; gap: 14px; margin-top: 16px; justify-content: center; }
#footer .social-links a { width: 38px; height: 38px; border: 1px solid rgba(0,0,0,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,.6); font-size: .95rem; transition: background .2s,color .2s,border-color .2s; text-decoration: none; }
#footer .social-links a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
#footer .copyright { color: rgba(0,0,0,.5); font-size: .8rem; text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.07); }
#footer .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .9rem; color: rgba(0,0,0,.55); }
#footer .contact-item i { color: var(--orange); margin-top: 2px; font-size: 1.5rem; }
#footer .contact-item a { color: rgba(0,0,0,.55); text-decoration: none; }
#footer .contact-item a:hover { color: var(--orange); }

/* ── ANIMATIONS ───────────────────────── */
@keyframes fadeInUp   { from{opacity:0;transform:translateY(32px)}  to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-32px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight{ from{opacity:0;transform:translateX(32px)}  to{opacity:1;transform:translateX(0)} }
@keyframes zoomIn     { from{opacity:0;transform:scale(.88)}        to{opacity:1;transform:scale(1)} }
@keyframes fadeIn     { from{opacity:0} to{opacity:1} }
[data-anim] { opacity: 0; }
[data-anim].in-view { animation-fill-mode: both; animation-duration: .75s; animation-timing-function: cubic-bezier(.25,.46,.45,.94); }
[data-anim].in-view[data-delay="1"] { animation-delay: .1s; }
[data-anim].in-view[data-delay="2"] { animation-delay: .2s; }
[data-anim].in-view[data-delay="3"] { animation-delay: .3s; }
[data-anim].in-view[data-delay="4"] { animation-delay: .45s; }
[data-anim="fadeInUp"].in-view    { animation-name: fadeInUp; }
[data-anim="fadeInLeft"].in-view  { animation-name: fadeInLeft; }
[data-anim="fadeInRight"].in-view { animation-name: fadeInRight; }
[data-anim="zoomIn"].in-view      { animation-name: zoomIn; }
[data-anim="fadeIn"].in-view      { animation-name: fadeIn; }

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── INNER PAGE ───────────────────────── */
body.inner-page #navbar {
    position: relative;
}
body.inner-page .nav-links a { color: rgba(255,255,255,.85); }

/* ── NORMAS ───────────────────────────── */
.normas-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .04em; color: #111; margin-bottom: 0; }
.normas-label { font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #bbb; margin-bottom: 6px; }
.normas-table td { padding: 3px 10px 3px 0; font-size: .9rem; color: #444; }
.normas-doc-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.normas-doc-item:last-of-type { border-bottom: none; }
.normas-num { min-width: 32px; height: 32px; background: linear-gradient(135deg, #F46A1A, #FFB040); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.normas-pay-title { font-weight: 700; font-size: .9rem; color: #333; margin-bottom: 8px; }
.normas-list { list-style: none; padding: 0; margin: 0; }
.normas-list li { position: relative; padding-left: 18px; margin-bottom: 6px; font-size: .9rem; color: #555; line-height: 1.6; }
.normas-list li::before { content: '–'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.normas-subsection { border-left: 3px solid #f0f0f0; padding-left: 20px; }
.link-orange { color: var(--orange); font-weight: 600; }
.link-orange:hover { color: #c45510; }
.text-orange { color: var(--orange); }

/* ── EVENTO ───────────────────────────── */
.evento-foto { max-height: 480px; object-fit: cover; }
.evento-list { list-style: none; padding: 0; margin: 16px 0 0; }
.evento-list li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: .95rem; color: #444; border-bottom: 1px solid #f0f0f0; }
.evento-list li:last-child { border-bottom: none; }
.evento-list li i { color: var(--orange); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }

/* mosaico 3 fotos */
.evento-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 180px; gap: 8px; border-radius: 16px; overflow: hidden; }
.em-main { grid-column: 1 / 3; grid-row: 1; overflow: hidden; }
.em-sm    { grid-row: 2; overflow: hidden; }
.evento-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.evento-mosaic img:hover { transform: scale(1.06); }
.evento-motivos { background: #fff2d6; }

/* cards motivos */
.motivo-card { background: #fff; border-radius: 16px; padding: 24px 22px; height: 100%; border: 1px solid #eee; box-shadow: 0 4px 20px rgba(0,0,0,.05); transition: box-shadow .2s, transform .2s; }
.motivo-card:hover { box-shadow: 0 8px 36px rgba(244,106,26,.12); transform: translateY(-4px); }
.motivo-card h3 { font-family: 'Bebas Neue',sans-serif; font-size: 1.45rem; margin-bottom: 10px; color: #111; letter-spacing: .03em; display: flex; align-items: center; gap: 10px; }
.motivo-icon { width: 38px; height: 38px; background: linear-gradient(135deg,#F46A1A,#FFB040); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.motivo-icon i { font-size: 1.3rem; color: #fff; }
.motivo-card p { font-size: .9rem; color: #555; line-height: 1.7; margin: 0; }

@media (max-width: 575px) {
    .evento-mosaic { grid-template-columns: 1fr; grid-template-rows: 200px 150px 150px; }
    .em-main { grid-column: 1; }
}

.inner-hero {
    position: relative;
    height: 45vh;
    min-height: 280px;
    text-align: center;
}
/* foto de fundo */
.inner-hero .slide-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero1.jpg') center/cover no-repeat;
    filter: brightness(.45);
}
/* brushes laterais (iguais ao hero da home) */
.inner-hero .hero-brush-left {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 280px;
    background: url('../img/brush_left.png') left bottom no-repeat;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
}
.inner-hero .hero-brush-right {
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 280px;
    background: url('../img/brush_right.png') left bottom no-repeat;
    background-size: cover;
    z-index: 9;
    pointer-events: none;
}
/* overlay gradiente igual ao da home */
.inner-hero .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,.75) 20%, transparent 70%),
                linear-gradient(to top,   rgba(13,13,13,.5) 0%,  transparent 55%);
    z-index: 1;
}
/* conteúdo centralizado */
.inner-hero .inner-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px 0;
}
.inner-hero h1 { font-family: 'Bebas Neue',sans-serif; font-size: clamp(2.4rem,4vw,4rem); color: #fff; margin: 0; line-height: 1; text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.inner-hero .breadcrumb { background: none; padding: 0; margin-bottom: 10px; justify-content: center; align-items: center; }
.inner-hero .breadcrumb-item a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .8rem; transition: color .2s; }
.inner-hero .breadcrumb-item a:hover { color: var(--orange); }
.inner-hero .breadcrumb-item.active { color: var(--orange); font-size: .8rem; }
.inner-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
@media (max-width: 1279px) {
    .nav-date-card{ scale: .75; }
    .logo {
    max-width: 200px;
}
.hero-brush-left, .hero-brush-right {
    width: 200px;
}
.nav-links a {
    font-size: .7rem;
    letter-spacing: .05em;
    padding: 0 2px;
}
.nav-dropdown li a {
    padding: 5px 10px;
    font-size: .7rem;
    letter-spacing: .05em;
}
}

/* Bootstrap accordion override */
.accordion-button:not(.collapsed) { color: var(--orange); background: rgba(244,106,26,.06); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(244,106,26,.25); }

/* ── RESPONSIVE ≤991px ────────────────── */
@media (max-width: 991px) {
    .inner-hero .hero-brush-right { width: 120px; }
    .inner-hero .hero-brush-left  { display: none; }
    .sub-nav{ width: fit-content;
    margin-left: 150px;}
    .inner-hero .slide-overlay, .inner-hero .slide-bg { margin-bottom:50px }
    #testimonialsCarousel .carousel-item{ padding: 0 10px; }
    section { padding: 40px 0; }
    .btn-orange { font-size: 1.1rem; padding: 8px 18px; }
    .hero-brush-bottom { bottom: 50px; background: url('../img/divisor_topo.png') bottom/200% 100% no-repeat; }
    #heroCarousel { padding-bottom: 50px; }
    .slide-btns a:last-child, .hero-sub, .hero-eyebrow { display: none; }
    .logo { max-width: 160px; }
    .nav-burger { margin-bottom: 50px; }
    .hero-brush-right { width: 150px; margin-top: 80px; }
    .hero-brush-left { display: none; }
    .section-title small { font-size: 2rem; }
    .price-row-sep { margin: 0 12px; }
    .pay-badge .big { font-size: 1.6rem; }
    .pay-badge .pay-label { font-size: .7rem; }
    .ticket-name { font-size: 1.8rem; }
    .ticket-price { font-size: 3.2rem; }
    .ticket-installment strong, .ticket-price small { font-size: 1.4rem; }
    .ticket-card-inner { padding: 16px 20px 12px; }
    #numbers-bar { background: linear-gradient(135deg,#e55c0d,#ff9c40); padding: 30px 0; position: unset; width: 100%; }
    .num-item .big-num { font-size: 1.8rem; }
    .num-item .big-label { font-size: .6rem; letter-spacing: .05em; }
    .btn-ticket { font-size: 1.4rem; }
    .brush-amarelo { margin-top: -60px; }
    #footer .logo-text { display: none !important; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(13,13,13,.97);
        padding: 20px 24px;
        gap: 16px;
        z-index: 9999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    #navbar.nav-open .nav-links { display: flex; }
    .nav-burger { display: flex !important; }
    .nav-dropdown { position: static; transform: none; opacity: 1; visibility: visible; background: rgba(255,255,255,.05); border: none; border-left: 2px solid var(--orange); border-radius: 0; padding: 4px 0 4px 12px; margin-top: 6px; display: none; box-shadow: none; }
    #navbar.nav-open .has-dropdown.open .nav-dropdown { display: block; }
    .nav-dropdown::before { display: none; }
    .nav-date-card { display: none !important; }
    #navbar .container { padding-top: 14px; padding-bottom: 14px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5,160px); }
    .gallery-grid [class*="gi-"] { grid-column: auto; grid-row: auto; }
    .gallery-grid .gi-1, .gallery-grid .gi-4, .gallery-grid .gi-5 { grid-column: span 2; }
}

@media (max-width: 575px) {
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: 200px 140px 140px 140px 140px; grid-template-areas: "a a" "b c" "d e" "f f" "g h"; }
    .gallery-grid [class*="gi-"] { grid-column: auto; grid-row: auto; }
    .gallery-grid .gi-1{grid-area:a} .gallery-grid .gi-2{grid-area:b} .gallery-grid .gi-3{grid-area:c}
    .gallery-grid .gi-4{grid-area:d} .gallery-grid .gi-5{grid-area:e} .gallery-grid .gi-6{grid-area:f}
    .gallery-grid .gi-7{grid-area:g} .gallery-grid .gi-8{grid-area:h} .gallery-grid .gi-9{display:none}
    #heroCarousel .carousel-control-prev, #heroCarousel .carousel-control-next { display: none; }
}
