/* ======================================
   FESTA DA FECARROZ - CUSTOM STYLES
   ====================================== */

/* ======================================
   ROOT VARIABLES
   ====================================== */
:root {
--primary-color: #d7a353;  /* dourado mais vivo */
--secondary-color: #2c1b0f; /* marrom escuro refinado */
--accent-color: #d7a353;  /* dourado mais vivo */
--background-dark: #1a1a1a;

    --text-dark: #000000;
    --text-light: #ffffff;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #495057;
    --green: #ffffff;
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'playfair display';
    
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    --box-shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

/* ======================================
   GLOBAL STYLES
   ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-light); /* cor do texto clara para contraste */
    background-color: var(--black); /* altera fundo para preto */
    overflow-x: hidden;
    padding-top: 110px;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    padding: 12px 24px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

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

.btn-block {
    width: 100%;
    display: block;
}

/* ======================================
   NAVIGATION
   ====================================== */
.navbar {
    position: fixed;       /* Faz o menu fixo no topo */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--secondary-color);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, var(--secondary-color), #000000);
}

.navbar-brand {
padding: 0.5rem 0;
    background: linear-gradient(135deg, var(--secondary-color), #000000);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: background-color 0.3s, box-shadow 0.3s, padding 0.3s;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover:after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 1.5rem;
}

/* ======================================
   HERO SECTION — NOVO CSS ORGANIZADO
====================================== */

.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.3)),
                url('../images/pixel.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 8%;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* CONTAINER DO CONTEÚDO */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    animation: fadeInUp 1s ease-out;
}

/* ======================================
   LOGO DO HERO
====================================== */

.hero-logo {
    width: 540px;
    max-width: 95%;
    height: auto;
    margin-bottom: 0; /* remove o deslocamento negativo */
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
    animation: fadeInUp 1s ease-out;
}

/* ======================================
   TEXTO
====================================== */

.font-subtitle {
    font-family: "Hammersmith One";
    font-size: 1.9rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* DATE + LOCATION */
.hero-date,
.hero-location {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.45);
    padding: 10px 22px;
    border-radius: 30px;
    width: fit-content;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


.hero-date i,
.hero-location i {
    color: var(--accent-color);
}

/* BOTÃO */
.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    margin-left: 0;
    color: var(--primary-color);
    border-color: var(--accent-color);
}

/* ======================================
   RESPONSIVIDADE — MOBILE
====================================== */

@media (max-width: 768px) {

    .hero {
        justify-content: center;
        padding-left: 0;
        text-align: center;
        height: auto;
        padding: 120px 20px 80px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        gap: 1.5rem;
    }

    .hero-logo {
        width: 80%;
        margin-bottom: 0;
    }

    .font-subtitle {
        font-size: 1.4rem;
    }

    .hero-date,
    .hero-location {
        justify-content: center;
        margin: 0 auto;
        font-size: 1rem;
        width: auto;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ======================================
   ANIMAÇÃO
====================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ======================================
   SECTIONS
   ====================================== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    font-family: "hammersmith one";
    font-weight: 400;
    font-style: normal;
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}









/* Área Principal */
.main-sponsors {
    flex: 1;
}

.main-title {
    text-align: center;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    color: #f4f1de;
    opacity: 0.9;
}

.tier-section {
    margin-bottom: 60px;
    text-align: center;
}

.tier-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.tier-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #d4a373;
    margin: 10px auto 0;
    opacity: 0.5;
}

/* Grids */
.grid-sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    
}

.grid-diamond { gap: 40px; }
.grid-gold { gap: 25px; }
.grid-institutional { gap: 30px; }

/* Cards de Patrocinadores */
.sponsor-card {
   background: rgba(255, 255, 255, 0.08); /* Fundo para os logos conforme referência */
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1.0s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
    
}

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

/* Estilos Específicos por Cota */
.card-sidebar {
    width: 100%;
    min-height: 100px;
}

.card-diamond {
    width: 290px;
    min-height: 150px;
    border-bottom: 4px solid #d7a353; /* Destaque dourado da Fecarroz */
}
 
.card-diamond:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.5);
    background-color: #ffffff;
}

.card-gold {
    width: 190px;
    min-height: 170px;
    background: rgba(255, 255, 255, 0.08);
        max-width: 190px;  /* Ajuste proporcional */
    max-height: 170px;
    
}

.card-gold:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
}

.card-institutional {
    width: 150px;
    min-height: 70px;
    background-color: transparent;
    box-shadow: none;
    padding: 10px;
    filter: grayscale(1) brightness(2); /* Estilo minimalista para institucional */
}

.card-institutional:hover {
    filter: grayscale(0) brightness(1);
}

/* Responsividade */
@media (max-width: 992px) {
    .sponsors-layout {
        flex-direction: column;
    }
    
    .sidebar-sponsors {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(212, 163, 115, 0.2);
        padding-right: 0;
        padding-bottom: 40px;
        justify-content: center;
        flex: 1;
    }
    
    .sidebar-group {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 1rem;
    }
    
    .card-diamond {
        width: 100%;
        max-width: 280px;
    }
    
    .card-gold {
        width: calc(50% - 15px);
        min-width: 140px;
    }
}





/* ================================
   SEÇÃO DE PATROCINADORES
   ================================ */

.sponsors-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #241a0e 0%, #1a1a1a 100%); /* Igual outras seções */
    text-align: center;
    color: var(--primary-color);
}
/*
.sponsors-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.sponsors-track {
    display: flex;
    gap: 55px; /* Espaçamento melhorado *
    animation: slide 28s linear infinite;
}

/* BLOCO DO LOGO – MAIS LARGO E MAIS ALTO *
.sponsor-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(207, 153, 53, 0.25);
    border-radius: 18px;
    min-width: 260px;  /* Aumentado *
    height: 150px;     /* Aumentado *
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
    transition: transform .3s ease;
}

/* Efeito ao passar o mouse *
.sponsor-item:hover {
    transform: scale(1.05);
}

.sponsor-item img {
    max-width: 180px;  /* Ajuste proporcional *
    max-height: 110px;
    object-fit: contain;
}

/* Animação contínua *
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pausar ao passar o mouse *
.sponsors-carousel:hover .sponsors-track {
    animation-play-state: paused;
} */

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 100%);
  color: var(--primary-color);
  padding: 80px 0;
}

.about-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-video:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  color: #f8f9fa;
  padding-left: 1rem;
}

.about-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.05rem;
  color: #e2e2e2;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item i {
  color: #d7a353; /* cor dourada principal */
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.feature-item:hover {
  background: rgba(207, 153, 53, 0.15);
  transform: translateX(5px);
}

.feature-item span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-item:hover i {
  color: #ffd27f; /* um dourado mais claro no hover */
}

.feature-item:hover {
  box-shadow: 0 0 10px rgba(207, 153, 53, 0.4);
}

.feature-item:hover i {
  transform: rotate(-5deg) scale(1.1);
}

.section-title {
  color: var(--primary-color);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.section-line {
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* ============== PLAYER DE MÚSICA ============== */

/* Estilos gerais para o container do player */
.container .section-title {
    text-align: center;
    /* Adicione outros estilos de título que você já tenha no seu site */
}

.container .section-line {
    /* Estilo para a linha decorativa, se houver */
    margin: 0 auto 20px;
    width: 80px;
    height: 3px;
    background-color: #d7a353; /* Cor de destaque */
}

.player {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #282828;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5 );
    max-width: 600px;
    margin: 30px auto; /* Centraliza o player na página */
}

.player-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.album-art {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
    background: linear-gradient(135deg, #3a2815, #d7a353);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.album-art i {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.song-info {
    flex-grow: 1;
    overflow: hidden;
}

.song-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.song-artist {
    font-size: 14px;
    color: #b3b3b3;
}

/* Barra de Progresso */
.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background-color: #535353;
    border-radius: 2.5px;
    cursor: pointer;
    margin-bottom: 8px;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: #d7a353;
    border-radius: 2.5px;
    transition: width 0.1s linear;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #b3b3b3;
}

/* Controles do Player */
.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.playback-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.control-btn:hover:not(:disabled) {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilo para botões desabilitados */
.control-btn:disabled {
    color: #535353;
    cursor: not-allowed;
}

.play-btn {
    background-color: #d7a353;
    color: #fff;
    width: 45px;
    height: 45px;
}

.play-btn:hover {
    background-color: #e7b464; /* Levemente mais claro no hover */
    transform: scale(1.05);
    color: #fff;
}

/* Controle de Volume */
.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    max-width: 180px;
    min-width: 120px;
    justify-content: flex-end;
}

.volume-icon {
    font-size: 16px;
    color: #b3b3b3;
    width: 20px;
    text-align: center;
}

.volume-slider {
    -webkit-appearance: none; /* Remove estilos padrão */
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    background: #535353;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.volume-container:hover .volume-slider::-webkit-slider-thumb {
    background: #d7a353;
}
.volume-container:hover .volume-slider::-moz-range-thumb {
    background: #d7a353;
}

/* Responsividade */
@media (max-width: 480px) {
    .player {
        padding: 15px;
    }

    .player-controls {
        flex-direction: column;
        gap: 20px;
    }

    .playback-buttons {
        order: 1; /* Botões de play no topo */
    }

    .volume-container {
        order: 2; /* Volume abaixo */
        width: 100%;
        max-width: 250px;
    }
}






/* Schedule Section */
/*.schedule {
    background: var(--black);
}

.schedule-tabs .nav-pills {
    justify-content: center;
    margin-bottom: 3rem;
}

.schedule-tabs .nav-link {
    background: var(--white);
    color: var(--text-dark);
    border-radius: 25px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.schedule-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    color: var(--black);
}

.schedule-tabs .nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.schedule-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-medium);
}

.schedule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-time {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    margin-right: 2rem;
}

.schedule-event h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.schedule-event p {
    color: var(--black);
    margin-bottom: 0;
}

/* ===== SEÇÃO PROGRAMAÇÃO ===== */
.programacao {
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 100%);
  color: var(--primary-color);
  text-align: center;
}

.section-title {
 
    font-size: 3rem; /* Este é o tamanho para desktop */
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 400;
    font-style: normal;
}

.programacao-info {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}

/* ===== COUNTDOWN ===== */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#countdown {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

#countdown div {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 25px;
  border-radius: 12px;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

#countdown div:hover {
  transform: translateY(-4px);
}

#countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color); /* dourado */
}

#countdown p {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.programacao-imagem-wrapper {
    max-width: 1100px; /* Define uma largura máxima para a imagem em telas grandes */
    margin: 0 auto; /* Centraliza a imagem */
    margin-top: 100px;
    padding: 0 1px; /* Adiciona um pequeno preenchimento nas laterais */
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); /* Sombra para destacar a imagem */
    border-radius: var(--border-radius);
    overflow: hidden; /* Garante que a imagem respeite o border-radius */
}

.programacao-imagem-wrapper img {
    width: 100%; /* Faz a imagem ser responsiva e ocupar todo o espaço do wrapper */
    height: auto;
    display: block; /* Remove qualquer espaço extra abaixo da imagem */
}


/* ======================================
   SEÇÃO DE PRÉVIA DA PROGRAMAÇÃO - CSS (GRID DE 3 CARDS)
   ====================================== */

#previa-programacao {
    background-color: var(--background-dark);
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Grid que alinha os cards */
.programacao-grid {
    display: flex;
    justify-content: center; /* Centraliza os cards no contêiner */
    flex-wrap: wrap; /* Permite que os cards quebrem a linha em telas menores */
    gap: 2rem; /* Espaçamento entre os cards */
    max-width: 1400px; /* Aumenta a largura máxima para acomodar os 3 cards */
    margin: 0 auto;
    padding: 0 15px;
}

/* Estilo individual de cada card de imagem */
.programacao-card {
    max-width: 380px; /* Largura máxima para cada card, para não ficarem gigantes */
    background-color: var(--secondary-color); /* Cor de fundo caso a imagem demore a carregar */
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: var(--transition);
}

.programacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.7);
}

.programacao-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;

}


/* ======================================
   RESPONSIVIDADE PARA OS CARDS
   ====================================== */
@media (max-width: 768px) {
    .programacao-grid {
        flex-direction: column; /* Empilha os cards verticalmente no celular */
        align-items: center; /* Centraliza os cards empilhados */
        gap: 2.5rem; /* Aumenta o espaço vertical entre eles */
    }

    .programacao-card {
        width: 100%; /* Faz o card ocupar a largura total disponível */
        max-width: 450px; /* Limita a largura máxima em tablets ou celulares largos */
    }
}



/* ======================================
   ATTRACTIONS SECTION
   ====================================== */
.attractions {
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 100%);
  color: #f8f3e9;
  padding-bottom: 100px;
}

.attraction-card {
  background: #3a2815;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(207, 153, 53, 0.4);
}

.attraction-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

.attraction-card:hover .attraction-image img {
  transform: scale(1.1);
}

.attraction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(98,37,0,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.attraction-card:hover .attraction-overlay {
  opacity: 1;
}

.attraction-overlay i {
  font-size: 2.8rem;
  color: var(--primary-color); 
  text-shadow: 0 0 12px rgba(207, 153, 53, 0.6);
}

.attraction-content {
  padding: 1.5rem;
}

.attraction-content h4 {
  color: var(--primary-color); /* Dourado principal */
  margin-bottom: 0.8rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.attraction-content p {
  color: #f8f3e9;
  font-size: 1rem;
  line-height: 1.5;
}

/* Stands Section */
.stands {
    background: var(--black);
}

.stands-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.stands-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.stands-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.stands-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 30px;
    transform: rotate(35deg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stands-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
}

.stands-header h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stands-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-primary);
}

.stands-body {
    padding: 2rem 1.5rem;
    color: var(--secondary-color);
}

.stands-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.stands-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.stands-features li:last-child {
    border-bottom: none;
}

/* ======================================
   CONTATO - VISUAL PADRONIZADO
   ====================================== */
.contact {
  background: linear-gradient(180deg, #1a1a1a 0%, #241a0e 100%);
  color: var(--primary-color);
  padding: 100px 0;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(207, 153, 53, 0.3);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  background: linear-gradient(135deg, #cf9935, #b9832b);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-content h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-content p {
  color: #e6e6e6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--border-radius);
  border: 2px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.contact-map {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(207, 153, 53, 0.3);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  height: 100%;
  
}

/* Ajuste da linha divisória */
.section-line {
  background: linear-gradient(135deg, #cf9935, #b9832b);
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-info {
    margin-bottom: 2rem;
  }

  .contact-map iframe {
    height: 300px;
  }
}

.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #241a0e, #cf9935, #241a0e);
    margin-top: 0px;
    margin-bottom: 0;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #241a0e);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-logo {
    width: auto;              /* mantém proporção original */
    height: px;            /* controla o tamanho sem distorcer */
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-links h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .btn {
    margin-top: 1rem;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 3rem 0 2rem;
}

.footer-copyright p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title .festa, .hero-title .fecarroz {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .festa, .hero-title .fecarroz {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stands-card.featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-time {
        margin-right: 0;
        margin-bottom: 1rem;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .festa, .hero-title .fecarroz {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem; /* Opcional: Aumentar o subtítulo também */
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 250px;
    }
    
    .schedule-tabs .nav-link {
        margin-bottom: 0.5rem;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .festa, .hero-title .fecarroz {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-date, .hero-location {
        font-size: 1rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .stands-price {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .festa, .hero-title .fecarroz {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stands-card.featured {
        transform: scale(0.95);
    }
}

/* ======================================
   PRINT STYLES
   ====================================== */
@media print {
    .navbar, .hero-scroll, .back-to-top, .social-links {
        display: none !important;
    }
    
    .hero {
        height: auto !important;
        padding: 100px 0 !important;
    }
    
    .section {
        padding: 50px 0 !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ======================================
   ACCESSIBILITY
   ====================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.form-control:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #FFD700;
        --secondary-color: #8B0000;
        --text-dark: #000000;
        --text-light: #333333;
    }
}

/* Placeholder styles */
.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B0000;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.attraction-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #D4AF37, #8B0000);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

.footer-logo-placeholder {
    width: 120px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

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

/* Contact Map Section */
.contact-map {
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Footer Brasão Municipio*/

/* Logos lado a lado */
.realizacao-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px; /* distância entre as logos */
    margin-bottom: 20px;
}

/* Ajuste do tamanho das logos */
.footer-logo-min {
    height: 150px;  /* ajuste conforme necessário */
    width: auto;
    display: block;
}

/* ============================
   AJUSTES PARA MOBILE (até 768px)
   ============================ */
@media (max-width: 768px) {

    /* Centraliza conteúdo no mobile */
    .hero {
        justify-content: center;
        padding-left: 0;
        text-align: center;
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content {
        align-items: center !important;
        text-align: center !important;
        transform: translateY(0) !important;
        gap: 1rem !important;
        max-width: 90%;
    }

    /* Logo menor e sem corte */
    .hero-logo {
        width: 260px !important;
        margin-bottom: 0 !important;
    }

    /* Frase menor e centralizada */
    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    /* Datas e localização centralizados */
    .hero-date,
    .hero-location {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 10px 15px;
    }

    /* Botão ajustado */
    .hero-buttons .btn {
        font-size: 1rem !important;
        padding: 12px 24px !important;
        width: 100%;
        max-width: 320px;
    }
}

/* ======== CORREÇÃO PARA MOBILE ======== */
@media (max-width: 768px) {

    .contact-item {
        align-items: center !important; /* Ícone alinhado ao centro do texto */
    }

    .contact-content h5,
    .contact-content p {
        margin: 0;
        line-height: 1.3;
    }

    .contact-icon {
        margin-top: 0 !important; /* remove elevação no mobile */
    }
}

/* =====posição links rapídos e informações para mobile*/

@media (max-width: 768px) {
    .footer-links {
        text-align: center;         /* centraliza títulos e textos */
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }
}

/* --- FORÇAR ícone AO LADO DO TEXTO (override definitivo) --- */
.hero-date,
.hero-location {
  display: flex !important;
  flex-direction: row !important;    /* garante que os itens fiquem lado a lado */
  align-items: center !important;    /* alinha verticalmente o ícone ao centro do texto */
  gap: 10px !important;              /* espaço entre ícone e texto */
  white-space: nowrap !important;    /* evita quebra entre ícone e texto */
}

/* garante que o ícone se comporte como um pequeno bloco inline centrado */
.hero-date i,
.hero-location i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 1.2rem !important;      /* ajuste conforme precisar */
}

/* texto dentro do bloco */
.hero-date span,
.hero-location span {
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Mobile tweaks (garante que continue visível sem cortar) */
@media (max-width: 480px) {
  .hero-date,
  .hero-location {
    gap: 8px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero-date i,
  .hero-location i {
    font-size: 1.05rem !important;
  }

  .hero-logo {
    width: 72% !important; /* evita a logo empurrar o conteúdo para fora */
  }
}
