/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Drawing Blood';
    src: url('../assets/fontes/DrawingBlood.eot');
    src: url('../assets/fontes/DrawingBlood.eot?#iefix') format('embedded-opentype'),
        url('../assets/fontes/DrawingBlood.woff2') format('woff2'),
        url('../assets/fontes/DrawingBlood.woff') format('woff'),
        url('../assets/fontes/DrawingBlood.ttf') format('truetype'),
        url('../assets/fontes/DrawingBlood.svg#DrawingBlood') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* ==========================================================================
   2. LAYOUT & UTILITIES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-family: "Drawing Blood", cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 3px;
    background: #ed1e24;
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Backgrounds */
.sobre,
.agenda {
    background: #111111;
}

.albuns,
.contatos,
.galeria {
    background: #000000;
}

/* ==========================================================================
   3. NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(237, 30, 36, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-brand img,
.footer-content img {
    max-width: 160px;
}


.nav-brand h1:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ed1e24;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ed1e24;
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================================
   4. COMPONENTS
   ========================================================================== */

/* Buttons */
.btn,
.platform-btn,
.submit-btn,
.ticket-btn,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn {
    padding: 0.75rem 1.5rem;
}

.btn-youtube,
.youtube,
.social-link.youtube {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.btn-youtube:hover,
.social-link.youtube:hover {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
    transform: translateY(-2px);
}

.btn-spotify,
.spotify,
.social-link.spotify {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.btn-spotify:hover,
.social-link.spotify:hover {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 215, 96, 0.5);
}

.btn-primary {
    background: #ed1e24;
    color: #ffffff;
}

.btn-primary:hover {
    background: #b91c6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 30, 36, 0.4);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: #ed1e24;
    border: 2px solid #ed1e24;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #ed1e24;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-general {
    background: #ed1e24;
    color: #ffffff;
}

.btn-general:hover {
    background: #b91c6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 30, 36, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: #ed1e24;
    border: 2px solid #ed1e24;
    padding: 0.8rem 2rem;
    border-radius: 8px;
}

.btn-outline-custom:hover {
    background: #ed1e24;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(237, 30, 36, 0.4);
}

/* Modals */
.video-modal,
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.video-modal.show,
.gallery-modal.show {
    display: flex;
}

.modal-content,
.gallery-modal-content {
    position: relative;
    margin: auto;
    background-color: #000;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(237, 30, 36, 0.3);
    border: 1px solid rgba(237, 30, 36, 0.3);
}

.modal-content {
    padding: 20px;
    width: 90%;
    max-width: 1000px;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
}

.modal-close,
.gallery-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.gallery-modal-close {
    color: #fff;
    top: 20px;
    right: 30px;
    font-size: 40px;
}

.modal-close:hover,
.modal-close:focus,
.gallery-modal-close:hover {
    color: #ed1e24;
    transform: scale(1.2);
}

/* Loading/Error */
.loading-message,
.error-message {
    text-align: center;
    padding: 3rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.loading-message::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(237, 30, 36, 0.3);
    border-top-color: #ed1e24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

.error-message {
    color: #ff6b6b;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

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

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.55) blur(0.5px) contrast(1.3) saturate(1.8);
    transform: scale(1.05);
}

.hero-background,
.corruption-effect,
.glitch-lines,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.corruption-effect,
.glitch-lines,
.hero-overlay {
    z-index: 2;
}

.hero-overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.85) 100%);
}

.hero-content,
.scroll-indicator {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    margin-left: 10%;
    text-align: left;
}

.hero-logo {
    text-align: center;
}

.hero-logo h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(237, 30, 36, 0.5), 0 0 40px rgba(237, 30, 36, 0.3);
}

.glitch-line {
    width: 100px;
    height: 4px;
    background: #ed1e24;
    margin: 0 0 1rem 0;
    box-shadow: 0 0 10px rgba(237, 30, 36, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    text-align: left;
}

/* Album Card in Hero */
.album-card {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(237, 30, 36, 0.4);
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem 0;
    max-width: 400px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(237, 30, 36, 0.15);
}

.album-cover {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #ed1e24, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(237, 30, 36, 0.5);
}

.album-placeholder img {
    width: 96%;
    border-radius: 8px;
    padding-top: 10px;
}

.album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.album-info h4 {
    font-size: 1.1rem;
    color: #ed1e24;
    margin-bottom: 0.3rem;
}

.album-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* ==========================================================================
   6. SECTIONS - ABOUT
   ========================================================================== */

#sobre {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/diss-trio-bg-black.webp);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.quote {
    background: rgba(237, 30, 36, 0.1);
    border-left: 4px solid #ed1e24;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #ed1e24;
    font-weight: 600;
}

.sobre-info {
    background: rgba(237, 30, 36, 0.05);
    border: 1px solid rgba(237, 30, 36, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.sobre-info h3 {
    font-family: "Drawing Blood", cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.sobre-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    flex-direction: column;
}

.tag {
    background: rgba(237, 30, 36, 0.2);
    color: #ed1e24 !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.9rem;
    border: 1px solid rgba(237, 30, 36, 0.3);
}
/* ESTILOS PARA SEÇÃO DE MARCAS DE APOIO */

/* Container Principal */
.support-cards-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #0f172a, #0f1419);
}

.support-cards-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header da Seção */
.support-cards-header {
  margin-bottom: 3rem;
  text-align: center;
}

.support-cards-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.support-cards-accent-line {
  height: 0.25rem;
  width: 6rem;
  background: linear-gradient(to right, #dc2626, #f59e0b);
  margin: 0 auto;
  border-radius: 9999px;
}

/* Grid de Cards */
.support-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .support-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .support-cards-grid {
    gap: 2.5rem;
  }
}

/* Card Base */
.support-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 2px solid;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-2px);
}

/* Cores dos Cards */
.support-card-rockarioca {
  border-color: #ef4444;
}

.support-card-rockarioca:hover {
  background-color: rgba(127, 29, 29, 0.2);
}

.support-card-cariocaos {
  border-color: #f59e0b;
}

.support-card-cariocaos:hover {
  background-color: rgba(120, 53, 15, 0.2);
}

/* Accent Top */
.support-card-accent-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
}

.support-card-accent-red {
  background: linear-gradient(to right, #dc2626, #b91c1c);
}

.support-card-accent-amber {
  background: linear-gradient(to right, #f59e0b, #ea580c);
}

/* Conteúdo do Card */
.support-card-content {
  padding: 2rem;
}

@media (min-width: 640px) {
  .support-card-content {
    padding: 2.5rem;
  }
}

/* Logo Container */
.support-card-logo-container {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-logo {
  width: 20rem;
  height: 8rem;
  padding: 10px;
  border-radius: 0.5rem;
  border: 2px solid #fff;
  background-color: #fff;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.support-card:hover .support-card-logo {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Título do Card */
.support-card-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-card-title-rockarioca {
  background-image: linear-gradient(to right, #dc2626, #b91c1c);
}

.support-card-title-cariocaos {
  background-image: linear-gradient(to right, #f59e0b, #ea580c);
}

/* Descrição */
.support-card-description {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  text-align: justify;
}

@media (min-width: 640px) {
  .support-card-description {
    font-size: 1rem;
  }
}

/* Link Container */
.support-card-link-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Link do Instagram */
.support-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.support-card-link-rockarioca {
  background: linear-gradient(to right, #dc2626, #b91c1c);
}

.support-card-link-rockarioca:hover {
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  transform: scale(1.05);
}

.support-card-link-rockarioca:active {
  transform: scale(0.95);
}

.support-card-link-cariocaos {
  background: linear-gradient(to right, #f59e0b, #ea580c);
}

.support-card-link-cariocaos:hover {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  transform: scale(1.05);
}

.support-card-link-cariocaos:active {
  transform: scale(0.95);
}

/* Ícone do Instagram */
.support-card-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Pattern de Fundo */
.support-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.support-card-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, #dc2626, transparent);
  border-radius: 50%;
  filter: blur(3rem);
}

/* Footer Accent */
.support-cards-footer-accent {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.support-cards-footer-accent::after {
  content: '';
  height: 0.25rem;
  width: 8rem;
  background: linear-gradient(to right, #dc2626, #f59e0b, #dc2626);
  border-radius: 9999px;
}

/* Responsividade Mobile */
@media (max-width: 640px) {
  .support-cards-section {
    padding: 2rem 1rem;
  }

  .support-cards-title {
    font-size: 1.875rem;
  }

  .support-card-title {
    font-size: 1.5rem;
  }

  .support-card-content {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   7. SECTIONS - STREAMING & CAROUSEL
   ========================================================================== */
.streaming-section {
    margin-bottom: 4rem;
}

.streaming-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}

.media-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    min-height: 450px !important;
}

.youtube-carousel,
.spotify-player {
    margin-bottom: 0;
}

.youtube-carousel .carousel-wrapper,
.youtube-carousel .carousel-track {
    width: 100% !important;
    max-width: 100% !important;
}

.youtube-carousel h4,
.spotify-player h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
}

/* Carousel */
.youtube-carousel {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

/* Video Items */
.video-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.4s ease;
    transform: scale(0.95);
    padding: 0 10px;
}

.video-item.active {
    opacity: 1;
    transform: scale(1);
}

.video-item:hover {
    opacity: 1;
    transform: scale(1.02);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-item:hover .video-thumbnail {
    box-shadow: 0 8px 25px rgba(237, 30, 36, 0.4);
    animation: subtle-glitch 0.3s ease;
}

@keyframes subtle-glitch {

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

    20% {
        transform: translateX(-2px);
    }

    40% {
        transform: translateX(2px);
    }

    60% {
        transform: translateX(-1px);
    }

    80% {
        transform: translateX(1px);
    }
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .play-overlay {
    opacity: 1;
}

.play-button {
    transition: transform 0.3s ease;
}

.video-item:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    width: 68px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.video-info {
    margin-top: 12px;
    text-align: center;
    padding: 0 5px;
}

.video-info h5 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.video-info p {
    font-size: 0.85rem;
    color: #cccccc;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(237, 30, 36, 0.8);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(237, 30, 36, 0.4);
}

.carousel-btn:hover {
    background: #ed1e24;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(237, 30, 36, 0.6);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(237, 30, 36, 0.3);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ed1e24;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(237, 30, 36, 0.7);
}

/* Spotify Embed */
/* Media Card Shared Styles */
.media-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.media-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.youtube-carousel.media-card:hover {
    border-color: rgba(237, 30, 36, 0.3);
    box-shadow: 0 8px 25px rgba(237, 30, 36, 0.15);
}

.youtube-carousel .carousel-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Spotify Embed */
.spotify-embed.media-card:hover {
    border-color: rgba(29, 185, 84, 0.3);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.15);
}

.spotify-embed {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.spotify-embed iframe {
    flex: 1 !important;
    min-height: 0 !important;
}

.spotify-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(237, 30, 36, 0.3);
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
}

.spotify-container iframe {
    border-radius: 8px;
    width: 100%;
}

/* Platforms & Footer Links */
.streaming-platforms {
    margin-bottom: 4rem;
    text-align: center;
}

.streaming-platforms h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.platform-btn {
    padding: 1rem;
    border-radius: 8px;
    color: #ffffff;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.bandcamp {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.deezer {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.streaming-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.streaming-footer p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.streaming-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.streaming-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 120px;
}

.streaming-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.streaming-links i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.streaming-links .spotify-link {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.streaming-links .spotify-link:hover {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.streaming-links .youtube-link {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.streaming-links .youtube-link:hover {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.streaming-links .deezer-link {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.streaming-links .deezer-link:hover {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.additional-links {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-links p {
    color: #cccccc;
    margin-bottom: 1rem;
}

/* ==========================================================================
   8.  GALLERY MASONRY - CORRIGIDO
   ========================================================================== */

.gallery-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 10px; /* ⚠️ CRÍTICO: Isto é a altura BASE, não a altura final */
    gap: 15px;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

/* Item da galeria - CORRIGIDO */
.gallery-item-home {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background:  #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
    will-change: transform;
    
    /* 🔴 REMOVE QUALQUER ASPECT-RATIO FORÇADO */
    /* Não use:  aspect-ratio: 1; */
}

/* Imagem dentro do item - CORRIGIDO */
.gallery-item-image {
    width: 100%;
    height:  100%;
    object-fit: cover;      /* ✅ Mantém proporção SEM distorcer */
    object-position: center; /* ✅ Centraliza a imagem */
    transition: transform 0.5s ease;
    display: block;
}

/* Remova qualquer max-height que possa estar quebrando */
.gallery-item-home img {
    max-width: 100%;
    height: auto; /* ⚠️ IMPORTANTE: auto, não um valor fixo */
}

/* Hover effects */
.gallery-item-home:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(237, 30, 36, 0.5);
    box-shadow: 0 10px 30px rgba(237, 30, 36, 0.3);
    z-index: 10;
}

.gallery-item-home:hover .gallery-item-image {
    transform: scale(1.05);
}

/* Overlay com informações */
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left:  0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-item-home:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.gallery-item-overlay p {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom:  0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
}

.gallery-item-meta i {
    margin-right: 0.2rem;
}

/* Loading states */
.gallery-item-home.loading {
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 200px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1200px) {
    .gallery-grid-home {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-auto-rows: 12px;
    }
}

@media (max-width: 992px) {
    .gallery-grid-home {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        grid-auto-rows: 14px;
        gap: 12px;
    }
    
    .gallery-item-overlay {
        padding: 0.8rem;
    }
    
    .gallery-item-overlay h3 {
        font-size: 0.85rem;
    }
    
    .gallery-item-overlay p {
        font-size:  0.75rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid-home {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        grid-auto-rows: 16px;
        gap: 10px;
    }
    
    .gallery-item-overlay {
        padding:  0.6rem;
    }
    
    .gallery-item-overlay h3 {
        font-size: 0.8rem;
    }
    
    .gallery-item-overlay p {
        -webkit-line-clamp: 1;
    }
    
    .gallery-item-meta {
        gap: 0.5rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-home {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        grid-auto-rows: 18px;
        gap: 8px;
    }
}

/* ========== MODAL DA GALERIA ========== */
.gallery-modal-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;    /* ✅ Crucial */
    display: block;
}

.gallery-modal-info {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal-info h3 {
    font-size: 1.5rem;
    color: #ed1e24;
    margin-bottom: 0.5rem;
}

.gallery-modal-info p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-modal-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #999;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    background: rgba(237, 30, 36, 0.8);
    color: #fff;
    border: none;
    padding: 1rem 1. 5rem;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-nav:hover {
    background: #ed1e24;
}

.gallery-modal-nav.prev {
    left: 20px;
}

.gallery-modal-nav.next {
    right: 20px;
}

/* ==========================================================================
   9. SECTIONS - SHOWS/AGENDA
   ========================================================================== */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.show-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.show-item:hover {
    border-color: rgba(237, 30, 36, 0.3);
    transform: translateY(-2px);
}

.show-date {
    text-align: center;
}

.show-date .date {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ed1e24;
    line-height: 1;
}

.show-date .month {
    display: block;
    font-size: 1.1rem;
    color: #cccccc;
    text-transform: uppercase;
}

.show-date .year {
    font-size: 0.9rem;
    color: #cccccc;
}

.show-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.show-info p {
    color: #cccccc;
    margin-bottom: 0.3rem;
}

.show-status {
    text-align: center;
}

.status {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status.available {
    color: #4ade80;
}

.status.soldout {
    color: #ef4444;
}

.status.soon {
    color: #fbbf24;
}

.ticket-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.ticket-btn.available {
    background: #4ade80;
    color: #ffffff;
}

.ticket-btn.available:hover {
    background: #22c55e;
}

.ticket-btn.soldout {
    background: #ef4444;
    color: #ffffff;
    cursor: not-allowed;
}

.ticket-btn.soon {
    background: #fbbf24;
    color: #000000;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   10. SECTIONS - CONTACT
   ========================================================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(237, 30, 36, 0.3);
    background: rgba(237, 30, 36, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(237, 30, 36, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ed1e24;
}

.contact-details span {
    color: #cccccc;
}

/* Social Links */
.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.0rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link i {
    font-size: 1.0rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.social-link.instagram {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.social-link.facebook {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.social-link.twitter {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.social-link.tiktok {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

.social-link.bandcamp {
    background: linear-gradient(to bottom, #e0e5ec 0%, #c0c0c0 25%, #ffffff 50% 50%, #c0c0c0 75%, #e0e5ec 100%);
    color: #000;
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ed1e24;
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 30, 36, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-block;
    background: #ed1e24;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b91c6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 30, 36, 0.4);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
    background: #000000;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: "Drawing Blood", cursive;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ed1e24;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 0.5rem;
}

.footer-credits {
    font-size: 0.75rem;
    color: #777777;
}

/* ==========================================================================
   12. MEDIA QUERIES
   ========================================================================== */

/* CORREÇÕES PARA MENU MOBILE E RESPONSIVIDADE */

/* Menu Mobile - CORRIGIDO */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        width: 100%;
    }

    .nav-link:hover {
        background: rgba(237, 30, 36, 0.1);
    }

    .nav-link::after {
        display: none;
    }
}

/* MOBILE: Um abaixo do outro */
@media (max-width: 1024px) {
    .media-container {
        grid-template-columns: 1fr !important;
        /* APENAS UMA COLUNA */
        gap: 3rem !important;
        /* Mais espaço entre eles */
        min-height: auto !important;
    }

    /* Ambos ocupam 100% da largura */
    .youtube-carousel,
    .spotify-embed {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 350px !important;
    }

    /* Carrossel no mobile */
    .youtube-carousel {
        margin-bottom: 1rem;
    }

    .carousel-container {
        height: 350px !important;
        min-height: 350px !important;
    }

    /* Spotify no mobile */
    .spotify-embed iframe {
        height: 350px !important;
        min-height: 350px !important;
    }
}

/* Ajustes para tablets menores */
@media (max-width: 768px) {
    .media-container {
        gap: 2.5rem !important;
    }

    .youtube-carousel,
    .spotify-embed {
        min-height: 320px !important;
    }

    .carousel-container {
        height: 320px !important;
        min-height: 320px !important;
    }

    .spotify-embed iframe {
        height: 320px !important;
        min-height: 320px !important;
    }
}

/* Ajustes para celulares */
@media (max-width: 480px) {
    .media-container {
        gap: 2rem !important;
    }

    .youtube-carousel,
    .spotify-embed {
        min-height: 280px !important;
    }

    .carousel-container {
        height: 280px !important;
        min-height: 280px !important;
        padding: 1rem 35px !important;
    }

    .spotify-embed iframe {
        height: 280px !important;
        min-height: 280px !important;
    }

    .youtube-carousel h4,
    .spotify-embed h4 {
        font-size: 1.2rem !important;
        margin-bottom: 1.2rem !important;
    }
}

@media (max-width: 768px) {

    /* Hero */
    .hero-content {
        margin: 90% auto 0 auto;
        max-width: 100%;
        width: calc(100% - 24px);
        padding-left: 10px;
        padding-right: 10px;
    }

    .album-card {
        max-width: 100%;
        padding: 1rem;
        width: 100%;
    }

    /* Layout 3 colunas no mobile */
    .album-card-wrapper {
        display: grid;
        grid-template-columns: auto 1fr auto;
        /* Capa | Info | Botões */
        gap: 1rem;
        align-items: center;
    }

    .album-cover {
        width: 80px;
        height: 80px;
        margin: 0;
        flex-shrink: 0;
    }

    .album-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.3rem;
        text-align: left;
        /* Alinha o texto à esquerda no mobile */
    }

    .album-info h3 {
        font-size: 0.95rem;
        margin-bottom: 0;
        color: #ffffff;
    }

    .album-info h4 {
        font-size: 0.85rem;
        color: #ed1e24;
        margin-bottom: 0;
    }

    .streaming-buttons-album {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }

    .streaming-links a {
        padding: 0.5rem 0.5rem;
        min-width: 100px;
    }

    .streaming-links {
        margin-top: 0;
    }

    .hero-logo {
        text-align: left;
        /* título/linha alinhados à esquerda */
    }

    .hero-image-bg img {
        object-fit: cover;
        /* Garante que cubra toda a área */
        object-position: 60% center;
        /* Ajuste da posição - 60% da esquerda, centro vertical */
        filter: brightness(1.55) blur(0.5px) contrast(1.3) saturate(1.8);
        transform: scale(1.1);
        /* Aumentei um pouco para garantir cobertura */
    }


    /* Ajustes adicionais para telas menores */
    .hero-subtitle {
        text-align: left;
    }

    .glitch-line {
        margin: 0 auto 1rem;
    }

    .hero-subtitle {
        text-align: center;
    }

    /* Carousel Mobile */
    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .video-thumbnail {
        border-radius: 8px;
    }

    .video-info h5 {
        font-size: 0.95rem;
    }

    .video-info p {
        font-size: 0.8rem;
    }

    /* Spotify Embed Mobile */
    .spotify-embed {
        padding: 1rem;
    }

    .spotify-embed iframe {
        height: 380px;
    }

    /* Streaming Links Mobile */
    .streaming-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .streaming-links a {
        width: 100%;
        justify-content: center;
    }

    /* Sobre Section Mobile */
    #sobre {
        background-size: contain;
        background-position: bottom;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tags {
        gap: 0.8rem;
    }

    .tag {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }

    /* Shows Mobile */
    .show-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .show-date {
        margin-bottom: 0;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        flex: 1;
        min-width: 45%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-brand img {
        max-width: 120px !important;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    /* Hero */
    .hero-content {
        margin: 90% auto 0 auto;
        max-width: 100%;
        width: calc(100% - 24px);
        padding-left: 10px;
        padding-right: 10px;
    }

    .album-card {
        max-width: 100%;
        padding: 1rem;
        width: 100%;
    }

    /* Layout 3 colunas no mobile */
    .album-card-wrapper {
        display: grid;
        grid-template-columns: auto 1fr auto;
        /* Capa | Info | Botões */
        gap: 1rem;
        align-items: center;
    }

    .album-cover {
        width: 80px;
        height: 80px;
        margin: 0;
        flex-shrink: 0;
    }

    .album-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.3rem;
        text-align: left;
        /* Alinha o texto à esquerda no mobile */
    }

    .album-info h3 {
        font-size: 0.95rem;
        margin-bottom: 0;
        color: #ffffff;
    }

    .album-info h4 {
        font-size: 0.85rem;
        color: #ed1e24;
        margin-bottom: 0;
    }

    .streaming-buttons-album {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }

    .streaming-links a {
        padding: 0.5rem 0.5rem;
        min-width: 100px;
    }

    .streaming-links {
        margin-top: 0;
    }

    .hero-logo {
        text-align: left;
        /* título/linha alinhados à esquerda */
    }

    .hero-image-bg img {
        object-fit: cover;
        /* Garante que cubra toda a área */
        object-position: 60% center;
        /* Ajuste da posição - 60% da esquerda, centro vertical */
        filter: brightness(1.55) blur(0.5px) contrast(1.3) saturate(1.8);
        transform: scale(1.1);
        /* Aumentei um pouco para garantir cobertura */
    }


    /* Ajustes adicionais para telas menores */
    .hero-subtitle {
        text-align: left;
    }

    .glitch-line {
        margin: 0 auto 1rem;
    }

    .hero-subtitle {
        text-align: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Carousel */
    .carousel-container {
        padding: 0 35px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .video-info h5 {
        font-size: 0.9rem;
    }

    .video-info p {
        font-size: 0.75rem;
    }

    /* Spotify */
    .spotify-embed h4 {
        font-size: 1.1rem;
    }

    .spotify-embed iframe {
        height: 352px;
    }

    /* Tags */
    .tag {
        font-size: 1.3rem;
        padding: 0.5rem 0.8rem;
    }

    /* Shows */
    .show-date .date {
        font-size: 1.8rem;
    }

    .show-date .month {
        font-size: 1rem;
    }

    .show-info h3 {
        font-size: 1.1rem;
    }

    .show-info p {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-details h4 {
        font-size: 0.95rem;
    }

    .social-link {
        min-width: 100%;
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }

    .social-link i {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    /* Gallery */
    .gallery-grid-home {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        grid-auto-rows: 18px;
        gap: 8px;
    }

    .gallery-modal-content {
        max-width: 95%;
    }

    .gallery-modal-info {
        padding: 1.5rem;
    }

    .gallery-modal-info h3 {
        font-size: 1.2rem;
    }

    .gallery-modal-nav {
        padding: 0.6rem 0.8rem;
        font-size: 1.3rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .nav-menu {
        height: calc(100vh - 60px);
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
    }

    .album-card {
        max-width: 400px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .nav-brand h1 {
        font-size: 1.6rem;
    }

    .hamburger span {
        width: 22px;
    }

    .hero-logo h1 {
        font-size: 2rem;
    }

    .album-card {
        padding: 1.2rem;
    }

    .album-cover {
        width: 140px;
        height: 140px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .tag {
        font-size: 1.1rem;
    }
}

/* Fix para overflow em mobile */
body {
    overflow-x: hidden;
}

.section {
    overflow-x: hidden;
}

/* Melhorias de toque para mobile */
@media (max-width: 768px) {

    .btn,
    .nav-link,
    .carousel-btn,
    .gallery-item-home,
    .social-link {
        -webkit-tap-highlight-color: rgba(237, 30, 36, 0.3);
    }

    /* Aumentar área de toque dos botões */
    .carousel-btn {
        padding: 0;
        min-width: 44px;
        min-height: 44px;
    }

    .hamburger {
        padding: 10px;
        margin: -10px;
    }
}

/* Garantir que elementos não quebrem o layout */
* {
    max-width: 100%;
}

.streamings-mobile {
    display: none;
}


video,
iframe {
    max-width: 100%;
    height: 600px;
    width: 100%;
}

/* Modal responsivo */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .video-modal .modal-content {
        width: 95%;
        max-width: none;
    }

    .modal-close {
        font-size: 32px;
        top: 5px;
        right: 15px;
    }

    video,
    iframe {
        max-width: 100%;
        height: 400px;
        width: 100%;
    }

}

/* Ajustes finos para tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content {
        max-width: 90%;
        margin-left: 5%;
    }

    .album-card {
        max-width: 450px;
    }

    .media-container {
        gap: 2rem;
    }

    .sobre-content {
        gap: 3rem;
    }

    .contact-content {
        gap: 3rem;
    }
}