* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00FF00;
    --secondary-green: #4CAF50;
    --accent-orange: #FF6B00;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-dots-left {
    left: 30px;
}

.nav-dots-right {
    right: 30px;
    gap: 20px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dot:hover,
.dot.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.nav-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
}

.nav-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(10);
    transition: filter 0.3s ease;
}

.nav-social:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.1);
}

.nav-social:hover img {
    filter: brightness(0);
}

.nav-social-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-social-text span {
    line-height: 1;
}

.nav-social-text:hover {
    color: #0b0b0b;
}

.language-switcher {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 1200;
    display: inline-flex;
    border: 1px solid rgba(0, 255, 0, 0.45);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.72);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.18);
}

.lang-btn {
    border: 0;
    background: transparent;
    color: #e2e2e2;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
    color: #ffffff;
    background: rgba(0, 255, 0, 0.12);
}

.lang-btn.active {
    color: #0d0d0d;
    background: var(--primary-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Carousel */
.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.3));
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-bottom-logo {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-bottom-logo img {
    max-width: 30rem;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

/* Confirmações Section */
.confirmacoes {
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.12), transparent 48%),
        radial-gradient(circle at 80% 30%, rgba(76, 175, 80, 0.08), transparent 45%),
        linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
        url('assets/images/2026/background_2026.png') center center / cover no-repeat;
    padding: 6px 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.confirmacoes .container {
    width: 100%;
    max-width: 1080px;
    margin: auto;
}

.confirmacoes-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 6px;
    font-weight: 900;
    line-height: 1;
}

@keyframes ticket-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 0, 0.35), 0 0 28px rgba(0, 255, 0, 0.15); }
    50%       { box-shadow: 0 0 22px rgba(0, 255, 0, 0.65), 0 0 50px rgba(0, 255, 0, 0.25); }
}

.ticket-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 60, 0, 0.85) 0%, rgba(0, 30, 0, 0.95) 100%);
    border: 1px solid rgba(0, 255, 0, 0.7);
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 10px;
    text-decoration: none;
    animation: ticket-pulse 2.4s ease-in-out infinite;
    transition: background 0.3s ease, transform 0.2s ease;
}

.ticket-banner:hover {
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.9) 0%, rgba(0, 60, 0, 1) 100%);
    transform: scaleX(1.005);
}

.ticket-banner-label {
    color: #ffffff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.ticket-banner-label::before {
    content: "🎟  ";
}

.ticket-banner-cta {
    color: var(--primary-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.confirmacoes-days {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.day-column {
    position: relative;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 14px;
    padding: 6px 6px 5px;
    backdrop-filter: blur(2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.day-column-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.day-column-header::before,
.day-column-header::after {
    content: "";
    height: 1px;
    background: rgba(0, 255, 0, 0.45);
    flex: 1;
}

.day-column-header span {
    color: #ffffff;
    font-size: 0.94rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    font-weight: 900;
}

.band-stack {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.confirmacoes-camping-banner {
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    font-size: 1rem;
    font-weight: 900;
    color: #e8ffe8;
    border: 2px solid rgba(0, 255, 0, 0.85);
    border-radius: 8px;
    padding: 10px 14px;
    background: linear-gradient(90deg, rgba(0, 55, 0, 0.9) 0%, rgba(0, 95, 0, 0.58) 50%, rgba(0, 55, 0, 0.9) 100%);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.45), inset 0 0 18px rgba(0, 255, 0, 0.2);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.55);
}

.band-row {
    display: grid;
    gap: 3px;
}

.cols-1 {
    grid-template-columns: 1fr;
}

.cols-1 .band-logo-placeholder {
    width: 88%;
    margin: 0 auto;
}

.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.band-logo-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 0;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f2f2f2;
    transition: transform 0.3s ease;
}

.band-logo-placeholder img {
    width: 78%;
    height: 72%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.band-logo-placeholder img.headliner {
    max-height: 256px !important;
    height: auto;
}

.band-logo-placeholder img.mid-tier {
    max-height: 128px !important;
    height: auto;
}

.band-logo-placeholder img.suport-tier {
    max-height: 128px !important;
    height: auto;
}

.cols-1 .band-logo-placeholder img {
    width: 76%;
    height: 76%;
}

.cols-2 .band-logo-placeholder img {
    width: 78%;
    height: 70%;
}

.cols-3 .band-logo-placeholder img {
    width: 86%;
    height: 72%;
}

.band-logo-placeholder:hover {
    transform: translateY(-2px);
}

.sabado .cols-2 .band-logo-placeholder img {
    width: 84%;
    height: 74%;
}

.sabado .cols-3 .band-logo-placeholder img {
    width: 94%;
    height: 78%;
}

.sabado .row-compact .band-logo-placeholder img {
    width: 88%;
    height: 76%;
}

.row-feature .band-logo-placeholder {
    min-height: 52px;
}

.row-strong .band-logo-placeholder {
    min-height: 34px;
}

.row-medium .band-logo-placeholder {
    min-height: 24px;
}

.row-compact .band-logo-placeholder {
    min-height: 24px;
}

@media (min-width: 1025px) {
    .confirmacoes {
        height: 100vh;
        overflow: hidden;
    }

    .confirmacoes .container {
        width: 100%;
        max-width: 1080px;
        margin: auto;
    }
}


.btn-primary {
    background-color: var(--secondary-green);
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--primary-green);
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

/* Tickets Section */
.tickets {
    background-color: var(--dark-bg);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.tickets h2 {
    font-size: 2.5rem;
    margin-bottom: 42px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ticket-card {
    background: linear-gradient(160deg, rgba(10, 10, 10, 0.92) 0%, rgba(22, 22, 22, 0.96) 100%);
    border: 1px solid rgba(0, 255, 0, 0.35);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ticket-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 0, 0.75);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5);
}

.ticket-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.ticket-image {
    width: 100%;
    height: 170px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    object-fit: cover;
    object-position: center;
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.ticket-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    min-height: 52px;
    margin-bottom: 18px;
}

.ticket-buy-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: var(--dark-bg);
    background-color: var(--primary-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 11px 16px;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ticket-buy-link:hover {
    background-color: #7dff7d;
    transform: translateY(-1px);
}

/* Alternative Ticketing Section */
.tickets-alt {
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 0, 0.14), transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(76, 175, 80, 0.1), transparent 45%),
        linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
    padding: 80px 0;
}

.tickets-alt h2 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 34px;
    color: #ffffff;
    position: relative;
}

.tickets-alt h2::after {
    content: "";
    display: block;
    width: min(340px, 78%);
    height: 4px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.9) 20%, rgba(0, 255, 0, 1) 50%, rgba(0, 255, 0, 0.9) 80%, transparent 100%);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.5);
}

.tickets-alt-stack {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-strip {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 132px;
    grid-template-areas: "media main buy";
    column-gap: 0;
    align-items: stretch;
    border: 1px solid rgba(0, 255, 0, 0.55);
    border-radius: 12px;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(8, 28, 8, 0.9) 0%, rgba(16, 16, 16, 0.97) 58%, rgba(10, 10, 10, 1) 100%),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 20px
        );
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.ticket-strip::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 132px;
    border-right: 2px dashed rgba(0, 255, 0, 0.55);
}

.ticket-strip-main {
    grid-area: main;
    padding: 24px 24px 22px 22px;
}

.ticket-strip-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaaaaa;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.ticket-strip-main h3 {
    font-size: 2.3rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #f8f8f8;
}

.ticket-strip-main p {
    color: #cfcfcf;
    font-size: 1rem;
    line-height: 1.45;
    max-width: 90%;
}

.ticket-strip-facts {
    display: none;
}

.ticket-lineup {
    margin-top: 12px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.ticket-camping-note {
    display: inline-block;
    margin: 8px 0 4px;
    padding: 3px 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.66rem;
    font-weight: 800;
    color: var(--primary-green);
    border: 1px solid rgba(0, 255, 0, 0.35);
    border-radius: 999px;
    background: rgba(0, 255, 0, 0.06);
}

.ticket-lineup-row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 4px 18px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.02rem;
    line-height: 1.15;
    color: #f3f3f3;
}

.band-name {
    display: inline-block;
}

.ticket-lineup-row + .ticket-lineup-row {
    margin-top: 3px;
}

.ticket-lineup-row-head {
    font-size: 2.05rem;
    line-height: 0.95;
    letter-spacing: 1px;
    gap: 6px 24px;
}

.ticket-lineup-row-small {
    font-size: 0.78rem;
    line-height: 1.2;
    color: #e2e2e2;
}

.band-feature {
    color: #f6f6f6;
}

.band-accent {
    color: var(--primary-green);
}

.ticket-strip-band-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #cccccc;
    columns: 2;
    column-gap: 24px;
}

.ticket-strip-band-list li {
    margin-bottom: 4px;
    font-size: 0.9rem;
    line-height: 1.35;
    break-inside: avoid;
}

.ticket-strip-media {
    grid-area: media;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    min-width: 180px;
    background-color: rgba(0, 0, 0, 0.45);
    border-right: 1px solid rgba(0, 255, 0, 0.25);
}

.ticket-strip-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ticket-strip-buy {
    grid-area: buy;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 18px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ticket-strip-buy:hover {
    background-color: rgba(0, 255, 0, 0.12);
    color: #c9ffc9;
}

/* Year Section */
.year-section {
    background-color: var(--darker-bg);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.year-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.year-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.year-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.year-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Merchandise Section */
.merch {
    background-color: var(--dark-bg);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.merch h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.merch-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.merch-item:hover {
    transform: scale(1.05);
}

.merch-image {
    width: 100%;
    height: 100%;
}

/* Contactos Section */
.contactos {
    background:
        radial-gradient(circle at 75% 60%, rgba(0, 255, 0, 0.10), transparent 48%),
        radial-gradient(circle at 15% 30%, rgba(76, 175, 80, 0.07), transparent 44%),
        linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
    padding: 92px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contactos-layout {
    display: flex;
    gap: 56px;
    align-items: center;
}

.contactos-title-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-right: 52px;
    position: relative;
}

.contactos-title-col::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.9) 20%, rgba(0, 255, 0, 1) 50%, rgba(0, 255, 0, 0.9) 80%, transparent 100%);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.5);
}

.contactos h2 {
    font-size: clamp(2.8rem, 5.6vw, 4.2rem);
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #ffffff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.contactos-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    flex: 1;
}

.contactos-info {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-gray);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 22px;
    align-items: start;
}

.contactos-lead {
    grid-column: 1 / -1;
    margin: 0 0 6px;
    color: #d9d9d9;
    font-size: 1.22rem;
    line-height: 1.55;
}

.contactos-info p {
    margin: 0;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contactos-info strong {
    display: block;
    color: var(--primary-green);
    font-size: 0.92rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contactos-info a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contactos-info a:hover {
    color: #ffffff;
}

.contactos-quick-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.contactos-quick-actions a {
    text-decoration: none;
    color: #d8d8d8;
    font-size: 0.9rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 10px 14px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 999px;
    background: rgba(0, 255, 0, 0.05);
    transition: all 0.2s ease;
}

.contactos-quick-actions a:hover {
    color: #ffffff;
    border-color: rgba(0, 255, 0, 0.65);
    background: rgba(0, 255, 0, 0.12);
}

.map-embed {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.12), 0 16px 40px rgba(0, 0, 0, 0.6);
    aspect-ratio: 5 / 4;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Partners Footer Section */
.parceiros {
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 0, 0.07), transparent 55%),
        linear-gradient(180deg, #0b0b0b 0%, #080808 100%);
    border-top: 1px solid rgba(0, 255, 0, 0.15);
    padding: 48px 0 28px;
}

.partners-footer-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 36px;
    margin-bottom: 4px;
    border-bottom: none;
    position: relative;
}

.partners-footer-grid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 80%);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.5) 30%, rgba(0, 255, 0, 0.5) 70%, transparent 100%);
}

.partners-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.partners-col-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.partners-col-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.partners-col-label::before,
.partners-col-label::after {
    content: "";
    height: 1px;
    width: 28px;
    background: rgba(0, 255, 0, 0.45);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(40%);
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.partners-footer-bottom {
    text-align: center;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .confirmacoes-days,
    .year-images,
    .contactos-content {
        grid-template-columns: 1fr;
    }

    .contactos-layout {
        flex-direction: column;
        gap: 28px;
    }

    .contactos-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contactos-title-col {
        padding-right: 0;
    }

    .contactos-title-col::after {
        display: none;
    }

    .contactos h2 {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        letter-spacing: 3px;
    }

    .contactos h2::after {
        content: "";
        display: block;
        width: min(260px, 60%);
        height: 4px;
        margin: 10px auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.9) 20%, rgba(0, 255, 0, 1) 50%, rgba(0, 255, 0, 0.9) 80%, transparent 100%);
        box-shadow: 0 0 18px rgba(0, 255, 0, 0.5);
    }

    .merch-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-dots {
        display: none;
    }

    .nav-dots-right {
        display: none;
    }

    .ticket-camping-note {
        display: none !important;
    }

    .container {
        padding: 0 20px;
    }

    .language-switcher {
        top: 12px;
        right: 12px;
    }

    .lang-btn {
        font-size: 0.65rem;
        padding: 7px 10px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    @supports (height: 100dvh) {
        .hero {
            min-height: 100dvh;
        }
    }

    .confirmacoes,
    .tickets,
    .tickets-alt,
    .year-section,
    .merch,
    .contactos,
    .parceiros {
        padding: 60px 0;
        min-height: auto;
    }

    .confirmacoes {
        display: block;
        padding: 60px 0;
    }

    .logo {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .confirmacoes-title {
        font-size: 1.05rem;
    }

    .tickets h2,
    .tickets-alt h2,
    .year-section h2,
    .merch h2,
    .contactos h2 {
        font-size: 1.8rem;
    }

    .day-column {
        padding: 22px 16px 18px;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .ticket-strip {
        grid-template-columns: 110px 1fr 72px;
        grid-template-areas: "media main buy";
        min-height: 110px;
    }

    .ticket-strip::after {
        right: 72px;
    }

    .ticket-strip-main {
        padding: 10px 10px 10px;
        overflow: hidden;
    }

    .ticket-strip-main h3 {
        font-size: 0.78rem;
        margin-bottom: 2px;
    }

    .ticket-strip-main > p {
        display: block;
        font-size: 0.56rem;
        line-height: 1.25;
        margin-bottom: 4px;
        max-width: 100%;
    }

    .ticket-camping-note {
        display: none !important;
    }

    .confirmacoes-camping-banner {
        margin-top: 8px;
        font-size: 0.78rem;
        letter-spacing: 1.6px;
        padding: 8px 10px;
    }

    .ticket-strip-tag {
        font-size: 0.55rem;
        padding: 3px 7px;
        margin-bottom: 6px;
    }

    .ticket-lineup {
        display: none;
    }

    .ticket-strip-facts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        list-style: none;
        margin: 4px 0 0;
        padding: 0;
    }

    .ticket-strip-facts li {
        font-size: 0.56rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        line-height: 1.2;
        color: #e4e4e4;
        position: relative;
        padding-left: 10px;
    }

    .ticket-strip-facts li::before {
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--primary-green);
        position: absolute;
        left: 0;
        top: 0.42em;
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.45);
    }

    .ticket-strip-band-list {
        columns: 2;
        column-gap: 10px;
        margin-top: 6px;
    }

    .ticket-strip-band-list li {
        font-size: 0.68rem;
        margin-bottom: 2px;
    }

    .ticket-strip-media {
        width: 110px;
        min-width: 110px;
        max-width: 110px;
    }

    .ticket-strip-media img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .ticket-strip-buy {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 8px 10px;
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .year-images {
        grid-template-columns: 1fr;
    }

    .contactos-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .confirmacoes-title {
        font-size: 0.86rem;
    }

    .tickets h2,
    .tickets-alt h2,
    .year-section h2,
    .merch h2,
    .contactos h2 {
        font-size: 1.5rem;
    }

    .day-column-header span {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }

    .cols-3 {
        grid-template-columns: 1fr;
    }

    .cols-2,
    .cols-3 {
        grid-template-columns: 1fr;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .partners-footer-grid {
        gap: 32px;
    }

    .partners-col--wide .partners-col-logos {
        max-width: 100%;
    }

    .year-section p,
    .ticket-card p,
    .ticket-strip-main p {
        font-size: 1rem;
    }

    .contactos h2 {
        font-size: 2.05rem;
    }

    .contactos-lead {
        font-size: 1.08rem;
    }

    .contactos-info {
        font-size: 1.08rem;
        gap: 14px;
    }

    .contactos-quick-actions a {
        font-size: 0.82rem;
        padding: 8px 11px;
    }
}
