@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Inter:wght@400;600&family=Pacifico&display=swap');

:root {
  --primary-red: #E63946;
  --primary-yellow: #FCBF49;
  --dark: #1A1A1A;
  --light: #F1FAEE;
  --white: #FFFFFF;
  --gray: #333333;
  --accent: #D62828;
  
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-decorative: 'Pacifico', cursive;

  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(0px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

header.scrolled {
  padding: 8px 0; /* Encolhe o header */
}

header.scrolled .logo img {
  height: 70px; /* Reduz o logo */
}

header.header-opaque {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--primary-yellow);
}


header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 110px; /* Aumentado em 10% (era 100px) */
  width: auto;
  transition: var(--transition);
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,0.9))
    drop-shadow(0 0 20px rgba(255,255,255,0.6))
    drop-shadow(0 0 35px rgba(255,255,255,0.3));
}

nav ul {
  display: flex;
  gap: 40px;
}

nav ul li a {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 8px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--primary-yellow);
  border-bottom: 3px solid var(--primary-yellow);
  background: rgba(252, 191, 73, 0.1);
  padding: 5px 10px;
  border-radius: 5px 5px 0 0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(252, 191, 73, 0.3);
}

/* Hero Section - Container de Scroll */
.hero {
  height: 400vh; /* Espaço para o scroll da animação */
  background: #000;
  position: relative;
  overflow: visible; /* Necessário para sticky funcionar */
  padding: 0; /* REMOVE O PADDING DAS SEÇÕES QUE CAUSAVA A BARRA PRETA */
  margin: 0;
}

/* Container que fica fixo enquanto o usuário scrolla os 400vh */
.hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-frames {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-frames canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Canvas de background animado */
.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay gradiente da esquerda (escuro) para direita (transparente) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.10) 100%
  );
  z-index: 1;
}

.hero .container {
  margin-left: 5%;
  margin-right: auto;
  max-width: 900px;
  text-align: left;
  z-index: 2;
}

/* Animations */
/* Hero Content Styling - Matching Image */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.since-tag {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.brand-name {
  font-family: var(--font-decorative);
  font-size: 10rem;
  color: #fff;
  margin: 0;
  line-height: 0.95;
  text-transform: none;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 1s ease-out 0.2s forwards;
  text-shadow: 2px 4px 14px rgba(0,0,0,0.7);
}

.hero-tagline {
  margin: 12px 0;
}

.tagline-white {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  display: block;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.tagline-accent {
  font-family: var(--font-decorative);
  font-size: 2.2rem;
  color: #e63946;
  display: block;
  margin-top: 2px;
  text-transform: none;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-desc {
  font-size: 1rem;
  color: var(--white);
  margin-top: 5px;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.hero-btns {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: scale(0.9);
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.3s forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-yellow);
  border-radius: 2px;
  animation: scrollWheel 2s infinite ease-out;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* Checker Divider */
.checker-divider {
  height: 40px;
  width: 100%;
  background-image: conic-gradient(#000 90deg, #fff 90deg 180deg, #000 180deg 270deg, #fff 270deg);
  background-size: 20px 20px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  position: relative;
  z-index: 10;
}

@keyframes neonPulse {
  0% { box-shadow: 0 0 5px rgba(230, 57, 70, 0.4), 0 0 10px rgba(230, 57, 70, 0.2); }
  50% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.8), 0 0 30px rgba(230, 57, 70, 0.4); }
  100% { box-shadow: 0 0 5px rgba(230, 57, 70, 0.4), 0 0 10px rgba(230, 57, 70, 0.2); }
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--primary-red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-prime {
  background-color: var(--primary-red);
  border: 2px solid var(--primary-yellow) !important;
  animation: neonPulse 2s infinite ease-in-out;
  transform: scale(1.05);
}

.btn:hover {
  background-color: #ff3c3c;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 20px rgba(214, 40, 40, 0.6);
  color: var(--white);
}

.btn i {
  margin-right: 8px;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--white);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Sections General */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 100px;
  height: 5px;
  background: var(--primary-red);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
}

.img-main {
  width: 80%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.img-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 10px solid var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 2;
}


.about-text h2 {
  color: var(--primary-red) !important;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: left;
}

.about-title {
  color: var(--primary-red) !important;
  text-align: left !important;
}

.about-title::after {
  content: '';
  width: 100px;
  height: 5px;
  background: var(--primary-red) !important;
  position: absolute;
  bottom: -15px;
  left: 0;
  transform: none;
}

/* Forçar cor vermelha para qualquer título dentro da seção about */
.about .section-title {
  color: var(--primary-red) !important;
  text-align: left !important;
}

.about .section-title::after {
  background: var(--primary-red) !important;
  left: 0 !important;
  transform: none !important;
}

/* Regras ainda mais específicas */
section#sobre h2.section-title {
  color: #E63946 !important;
  text-align: left !important;
}

section#sobre h2.section-title::after {
  background: #E63946 !important;
  left: 0 !important;
  transform: none !important;
}

.about-text > h2 {
  color: #E63946 !important;
  text-align: left !important;
}

.about-text > h2::after {
  background: #E63946 !important;
  left: 0 !important;
  transform: none !important;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gray);
}

/* Units Section */
.units {
  background: var(--dark);
  color: var(--white);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}


.unit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--primary-red);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.unit-thumb {
  width: 100%;
  height: 250px; /* Aumentado de 200px para 250px (+25%) */
  object-fit: cover;
  border-bottom: 2px solid var(--primary-red);
}

.unit-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.unit-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-yellow);
}

.unit-buttons {
  margin-top: auto;
  padding: 0 25px 25px;
  display: flex;
  gap: 10px;
}

.unit-buttons .btn-sm {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.unit-card h3 {
  color: var(--primary-yellow);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.unit-card p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.unit-card .btn-sm {
  background: none;
  border: 2px solid var(--primary-yellow);
  color: var(--primary-yellow);
  padding: 8px 20px;
  margin-top: 15px;
  display: inline-block;
  border-radius: 8px;
}

/* Menu Section */
.menu {
  background: var(--light);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 2px solid var(--primary-red);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.tab.active, .tab:hover {
  background: var(--primary-red);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.menu-item {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.menu-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.menu-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-red);
}

.menu-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-red);
  background: rgba(220, 38, 38, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

.menu-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
  flex: 1;
}

/* Badge de categoria */
.menu-item::before {
  content: attr(data-category);
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-yellow);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}



@media (max-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px 0;
  }
  
  .menu-item img {
    height: 200px;
  }
  
  .menu-info {
    padding: 15px;
  }
  
  .menu-header h4 {
    font-size: 1.1rem;
  }
  
  .price {
    font-size: 1rem;
    background: var(--dark);
    padding: 5px 15px;
    border-radius: 10px;
  }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 350px;
    overflow: hidden;
  }
}

/* Slideshow da Galeria no Mobile */
.gallery-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
  width: 100%;
}

.gallery-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  padding: 5px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: var(--gray);
}

.gallery-subtitle a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.gallery-subtitle a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.loading-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: var(--light);
  border-radius: 20px;
  border: 2px dashed var(--primary-yellow);
}

.gallery-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.gallery-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-meta span i {
  color: var(--primary-yellow);
}

.gallery-overlay p {
  margin: 0 0 20px 0;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 90%;
}

.gallery-link {
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.gallery-link:hover {
  color: var(--primary-yellow);
  transform: scale(1.2);
}

.gallery-link:hover {
  opacity: 1;
}

/* ── Barra de Música ─────────────────────────── */
#music-bar {
  position: fixed;
  bottom: 35px;
  left: 35px;
  background: rgba(26,26,26,0.92);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.2s ease;
}

#music-bar:hover { 
  background: rgba(50,50,50,0.97); 
}

#music-bar .music-icon { 
  font-size: 1.1rem; 
  animation: pulse 2s infinite; 
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

#music-bar.muted .music-icon { 
  animation: none; 
  opacity: 0.4; 
}

#music-bar.playing .music-icon {
  color: var(--primary-yellow);
}

/* Contact Section */
.contact {
  background: url('../public/assets/img/pinup.png') no-repeat left center;
  background-size: contain;
  background-color: #ffffff;
  position: relative;
  min-height: 600px;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.9) 100%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Inverter ordem: informações primeiro, formulário depois */
.contact-grid .contact-info {
  order: 1;
}

.contact-grid .contact-form {
  order: 2;
}

.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  border-left: 10px solid var(--primary-red);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--primary-red);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-group input[type="checkbox"] {
  width: auto;
  margin: 4px 0 0 0;
  flex-shrink: 0;
}

.form-group input[type="checkbox"] + label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  background: var(--light);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid var(--primary-red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item h3 {
  color: var(--primary-red);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 700;
}

.info-item p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.info-item p:last-child {
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--primary-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-red);
  color: var(--white);
}

/* Footer New Design */
/* Footer Redesenhado - Estilo 50s Premium */
.site-footer {
  background-color: #111;
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 5px solid var(--primary-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.footer-column h4 {
  color: var(--primary-yellow);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-red);
}

.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* Ícones sociais menores e com cor padronizada */
.social-icons-footer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons-footer a {
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--primary-yellow);
  border: 1px solid var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-icons-footer a:hover {
  background: var(--primary-yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  color: var(--light);
}

.footer-column.links .link-groups-container {
  display: flex;
  gap: 40px;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-group a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  transition: var(--transition);
}

.link-group a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--light);
}

.footer-contact-list li i {
  color: var(--primary-yellow);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-hours-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(252, 191, 73, 0.2);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hour-item {
  margin-bottom: 0;
}

.hour-item:last-child {
  margin-bottom: 0;
}

.hour-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hour-content i {
  color: var(--primary-yellow);
  font-size: 1rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.hour-content div {
  flex: 1;
}

.hour-label {
  display: block;
  color: var(--primary-yellow);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 1.2;
}

.hour-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.3;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 3.5rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav ul { display: none; }
  .hero-content h1 { font-size: 4rem; } /* Ajuste no tamanho do nome no mobile */
  .tagline-white { font-size: 1.2rem; }
  .tagline-accent { font-size: 1.8rem; }
  .hero-desc { font-size: 0.9rem; max-width: 80%; }
  .section-title { font-size: 2.2rem; }
  
  /* Ajuste do header no mobile */
  .logo img {
    height: 60px; /* Reduz o logo no mobile */
  }

  header .btn-prime {
    padding: 6px 12px;
    font-size: 0.75rem;
    line-height: 1.1;
    transform: scale(1);
    white-space: nowrap;
    border-width: 1px !important;
  }
}

/* ── Botão Voltar ao Topo ─────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

#back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5);
}

/* ── About Features ───────────────────────────────── */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  text-align: center;
  padding: 25px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--primary-yellow);
  transition: all 0.3s ease;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-yellow);
  font-weight: 700;
}

/* ── Testimonials Section ─────────────────────────── */
.testimonials {
  padding: 120px 0;
  background-image: url('../public/assets/img/testimonials-bg.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}
.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .testimonials-grid {
    justify-content: flex-start; /* Alinha para permitir o scroll corretamente */
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 20px 20px; /* Padding extra para mostrar o início/fim */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .testimonial-card {
    min-width: 85vw; /* Ocupa quase toda a largura para parecer slide */
    scroll-snap-align: center;
    margin: 0 5px;
  }
}

.testimonials .section-title {
  color: var(--white);
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border-bottom: 5px solid var(--primary-red);
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(230, 57, 70, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  text-align: right; /* Alinhamento à direita */
  margin-top: 20px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--dark);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

.testimonial-stars {
  color: var(--primary-yellow);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* ── Infinite Film Slider ─────────────────────────── */
.film-slider {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 20px 0;
  border-top: 4px solid var(--primary-yellow);
  border-bottom: 4px solid var(--primary-yellow);
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}

.film-track {
  display: flex;
  width: max-content;
  animation: filmScroll 30s linear infinite;
  gap: 0;
}

.film-track img {
  height: 250px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.film-track img:hover {
  filter: brightness(1);
}

@keyframes filmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.film-slider:hover .film-track {
  animation-play-state: paused;
}