/*
Theme Name: Araxá Rodeio Show 2026
Theme URI: https://araxarodeioshow.com.br
Author: Victor
Author URI: https://victor.com
Description: Tema Premium Personalizado para o Araxá Rodeio Show 2026. Desenvolvido com Elementor e widgets customizados.
Version: 2.3.5
Text Domain: araxa-rodeio
*/

/* =========================================
   1. VARIABLES & DESIGN SYSTEM (PREMIUM)
   ========================================= */
:root {
    /* Primary Colors */
    --primary-red: #C62828;
    --primary-red-dark: #B71C1C;

    /* Accent Colors */
    --accent-orange: #FF6F00;
    --accent-yellow: #FFD54F;
    --accent-gold: #FFC107;

    /* Backgrounds */
    --bg-color: #F8F5F2;
    --bg-dark: #1A0F0A;
    --card-bg: #FFFFFF;

    /* Text Colors */
    --text-primary: #3E2723;
    --text-secondary: #5D4037;
    --text-light: #F8F5F2;
    --heading-color: #B22222;

    /* Typography */
    --font-heading: 'Rye', serif;
    --font-body: 'Aleo', serif;

    /* Transitions */
    --transition-speed: 0.4s;
    --transition-bounce: cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-width: 1400px;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --shadow-red: 0 8px 24px rgba(198, 40, 40, 0.35);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 50px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix header spacing for internal pages */
body:not(.home):not(.front-page) .site-main {
    padding-top: var(--header-height, 180px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    display: none;
}

.custom-cursor.hovered {
    width: 40px;
    height: 40px;
    background: rgba(198, 40, 40, 0.1);
}

@media (min-width: 1024px) {
    .custom-cursor {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F5F2 0%, #EDE7E3 100%);
}

/* Texture Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--text-secondary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.04;
    z-index: 0;
}

/* Gradient Bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 0;
}

/* Hero Shape Decoration - Single Discrete Shape */
.hero-shape {
    position: absolute;
    top: 8%;
    right: -3%;
    width: clamp(200px, 25vw, 350px);
    height: auto;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 5px 15px rgba(198, 40, 40, 0.2));
    animation: floatingShape 12s ease-in-out infinite;
}

@keyframes floatingShape {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    25% {
        transform: translateY(-20px) translateX(-10px) scale(1.05);
    }

    50% {
        transform: translateY(-30px) translateX(5px) scale(0.98);
    }

    75% {
        transform: translateY(-15px) translateX(-8px) scale(1.02);
    }
}

.hero-content {
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 900px;
    padding: 2rem;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-logo {
    max-width: clamp(280px, 45vw, 500px);
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    animation: fadeInUp 0.8s ease-out, breathe 4s ease-in-out 1s infinite;
}

.hero-date {
    max-width: clamp(220px, 40vw, 350px);
    width: 100%;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.1));
    animation: fadeInUp 0.8s ease-out 0.2s backwards, subtleFloat 5s ease-in-out 1.5s infinite;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.35);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho animado - igual ao sticky CTA */
.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineHero 3s infinite;
}

@keyframes shineHero {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Efeito ripple no hover */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateY(-10px) rotate(-45deg);
    }

    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* ============================================
   LINEUP SECTION - FULL WIDTH SLIDER
   ============================================ */

.lineup-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--bg-color);
    position: relative;
    overflow: visible;
}

.lineup-section .container {
    max-width: 100%;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInScale 1s ease-out;
    display: inline-block;
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }

    50% {
        transform: translateY(5px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-title .highlight {
    color: var(--accent-orange);
}

.title-separator {
    display: block;
    margin: 1rem auto;
    max-width: 200px;
    height: auto;
    opacity: 0.8;
    animation: wiggle 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes wiggle {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-5px) rotate(-2deg);
    }

    50% {
        transform: translateX(5px) rotate(2deg);
    }

    75% {
        transform: translateX(-3px) rotate(-1deg);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(198, 40, 40, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(198, 40, 40, 0.8));
    }
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 300;
}

/* Swiper Full Width Configuration */
.artistSwiper {
    width: 100%;
    padding: 80px 0 80px;
    overflow: visible !important;
}

.artistSwiper .swiper-wrapper {
    overflow: visible !important;
}

.artistSwiper .swiper-slide {
    width: 320px !important;
    height: auto;
    position: relative;
    padding-top: 60px;
    overflow: visible !important;
    transform-style: preserve-3d;
}

/* Force overflow visible for all Swiper containers */
.swiper,
.swiper-container {
    overflow: visible !important;
}

/* Artist Card Design */
.artist-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    /* Smoother bezier */
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: cardEntrance 0.6s ease-out backwards;
    /* Optimizations for smooth 3D rotation */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    transform: translateZ(0);
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(-15deg);
    }

    50% {
        transform: translateY(-10px) scale(1.02) rotateX(5deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.artist-card:hover,
.swiper-slide:hover .artist-card {
    transform: translateY(-12px) rotateZ(3deg) scale(1.02) !important;
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.artist-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange), var(--accent-yellow));
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.artist-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #F5F5F5;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-card:hover .artist-image img {
    transform: scale(1.08);
}

/* Event Date Badge - Destacado */
.event-date-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(50px);
    z-index: 100;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--text-light);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 80px;
    animation: dateFloat 3s ease-in-out infinite, datePulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backface-visibility: hidden;
}

.date-day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date-month {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

@keyframes dateFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px) translateZ(50px);
    }

    50% {
        transform: translateX(-50%) translateY(-5px) translateZ(50px);
    }
}

@keyframes datePulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
    }

    50% {
        box-shadow: 0 8px 30px rgba(198, 40, 40, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
    }
}

/* Artist Badge */
.artist-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    animation: pulseGlow 2s ease-in-out infinite, bounce 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 24px rgba(255, 193, 7, 0.8);
    }
}

/* Artist Info */
.artist-info {
    padding: 1.5rem 1.8rem;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.2;
}

.artist-genre {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Swiper Navigation Buttons */
.artistSwiper .swiper-button-next,
.artistSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.artistSwiper .swiper-button-next:hover,
.artistSwiper .swiper-button-prev:hover {
    background: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.artistSwiper .swiper-button-next::after,
.artistSwiper .swiper-button-prev::after {
    font-size: 20px;
    color: var(--primary-red);
    font-weight: 900;
}

.artistSwiper .swiper-button-next:hover::after,
.artistSwiper .swiper-button-prev:hover::after {
    color: #fff;
}

/* Swiper Pagination */
.artistSwiper .swiper-pagination {
    bottom: 30px;
}

.artistSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-secondary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.artistSwiper .swiper-pagination-bullet-active {
    background: var(--primary-red);
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   EVENT INFO SECTION
   ============================================ */

.info-event-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-color) 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.3);
    transition: transform 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(360deg);
    animation: none;
}

.info-icon i {
    font-size: 2rem;
    color: #fff;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
}

.info-card p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-detail {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.info-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--primary-red);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.info-link:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(198, 40, 40, 0.4);
}

/* ============================================
   PARALLAX SEPARATOR
   ============================================ */

.parallax-separator {
    height: 300px;
    background-color: #1A0F0A;
    background-image: repeating-linear-gradient(45deg,
            #1A0F0A,
            #1A0F0A 10px,
            #2A1810 10px,
            #2A1810 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.parallax-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 15, 10, 0.8), transparent, rgba(26, 15, 10, 0.8));
    z-index: 1;
}

/* Animated Waves */
.wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('assets/img/wave.svg');
    /* Ensure this path is correct relative to CSS or removed if broken */
    background-size: 1000px 80px;
    opacity: 0.1;
    /* Making waves very subtle to match image focus on text/stripes */
}

.wave-1 {
    opacity: 1;
    z-index: 1000;
    animation: wave 30s linear infinite;
    bottom: 0;
}

.wave-2 {
    opacity: 0.5;
    z-index: 999;
    animation: wave-reverse 15s linear infinite;
    bottom: 10px;
}

.wave-3 {
    opacity: 0.2;
    z-index: 998;
    animation: wave 20s linear infinite;
    bottom: 20px;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

@keyframes wave-reverse {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1000px;
    }
}

.parallax-separator .content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-separator h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 6rem 0 2rem;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ============================================
   SPONSORS SECTION - 4 BLOCOS
   ============================================ */

.sponsors-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #0D0705 0%, #1A0F0A 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 901px) {
    .sponsors-section {
        padding: 4rem 0;
    }
}

/* Grid de Blocos - 1 Coluna */
.sponsors-blocks-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

/* Cada Bloco */
.sponsor-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Título com linhas decorativas */
.sponsor-block__title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
}

.sponsor-block__title::before,
.sponsor-block__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 193, 7, 0.4);
    max-width: 40px;
}

.sponsor-block__title span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 1rem;
    white-space: nowrap;
}

/* Imagem do Bloco */
/* Nota: nunca usar max-height em % aqui — o pai não tem height definida; em desktop
   o % costuma colapsar (imagem some). Mobile “funcionava” porque o media query usa px. */
.sponsor-block__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(100%, 1200px);
    min-height: 72px;
}

/* Desktop/tablet: faixa maior — o teto 160px antigo deixava o compositório minúsculo */
.sponsor-block__image img {
    max-width: 100%;
    max-height: clamp(80px, 24vw, 380px);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.3s ease;
}

@media (min-width: 1200px) {
    .sponsor-block__image {
        max-width: min(100%, 1320px);
    }

    .sponsor-block__image img {
        max-height: min(440px, 30vw);
    }

    .sponsor-block__title span {
        font-size: 0.82rem;
    }

    .sponsor-block__title::before,
    .sponsor-block__title::after {
        max-width: min(120px, 10vw);
    }
}

.sponsor-block__image a:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive - Mobile adjustments */
@media (max-width: 600px) {
    .sponsor-block__title span {
        font-size: 0.7rem;
    }

    .sponsor-block__image img {
        max-height: clamp(48px, 22vw, 100px);
    }
}

/* ============================================
   PREMIUM MAIN FOOTER - NEW LAYOUT
   ============================================ */

.main-footer {
    background: linear-gradient(180deg, #1A0F0A 0%, #0D0705 100%);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

/* Row 1: Logo + Social */
.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-logo-wrapper {
    flex-shrink: 0;
}

.footer-logo-horizontal {
    max-height: 50px;
    width: auto;
}

/* Social Icons with Labels */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.footer-social-icons a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #fff;
}

.footer-social-icons a i {
    font-size: 1.1rem;
}

.footer-social-icons a span {
    font-weight: 500;
}

/* Row 2: Contact Info */
.footer-contact-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.footer-contact-item>i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.9;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-contact-text strong {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.footer-contact-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Row 3: Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-top-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-contact-item {
        text-align: center;
    }

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

@media (max-width: 600px) {
    .footer-social-icons a span {
        display: none;
    }

    .footer-social-icons a {
        padding: 0.75rem;
    }

    .footer-social-icons a i {
        font-size: 1.3rem;
    }

    .footer-logo-horizontal {
        max-height: 40px;
    }
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.6);
}

.sticky-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Hide sticky CTA on mobile */
@media (max-width: 768px) {
    .sticky-cta {
        display: none !important;
    }
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-btn {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(198, 40, 40, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0);
    }
}

/* Responsive Fixes */
@media (max-width: 480px) {
    .btn-primary {
        padding: 1rem 2rem;
        width: 100%;
    }

    .hero-logo {
        max-width: 90%;
    }
}

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

    /* Artist Swiper Mobile */
    .artistSwiper {
        padding: 40px 0;
    }

    .artistSwiper .swiper-slide {
        width: 260px !important;
        padding-top: 40px;
    }

    .artist-image {
        height: 350px;
    }

    .artist-info {
        padding: 1rem 1.2rem;
    }

    .artist-name {
        font-size: 1.2rem;
    }

    /* Event Date Badge Mobile */
    .event-date-badge {
        padding: 0.6rem 1rem;
        min-width: 60px;
    }

    .date-day {
        font-size: 1.5rem;
    }

    /* Section headers mobile */
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    /* Info Grid Mobile */
    .info-grid {
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    /* Footer Mobile */
    .footer-contact-row {
        gap: 2rem;
    }

    /* Hero adjustments */
    .hero-content {
        padding: 1rem;
        gap: 1.5rem;
    }
}

/* Mobile Menu Styles are in assets/css/header.css */