@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Inter:wght@300;400;500;600&family=Syne:wght@500;700;800&display=swap');

@font-face {
  font-family: 'Serenata';
  src: url('assets/serenata.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   DESIGN TOKENS & RESET
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-dark: #000000;
  --bg-card: #0b0c10;
  --bg-input: #121318;
  --accent-gold: #efae54;
  --accent-gold-hover: #dc9635;
  --accent-red: #00b069;
  --accent-red-hover: #009056;
  --text-white: #ffffff;
  --text-muted: #919296;
  --text-gold-light: #c5a48e;
  --border-color: rgba(217, 212, 194, 0.15);
  
  /* Fonts */
  --font-heading: 'Serenata', 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Dancing Script', cursive;

  /* Shadows & Radius */
  --shadow-premium: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav Height */
  --nav-height: 90px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.section-subtitle {
  font-family: var(--font-accent);
  color: var(--accent-gold);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.text-stroke {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: #e13a2c;
  color: #fff;
}
.btn-primary:hover {
  background-color: #c22e22;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 58, 44, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--text-white);
  color: var(--text-white);
}
.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(239, 174, 84, 0.2);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-normal);
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  height: 80px;
}

.nav-container {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-20px);
  animation: headerFadeDown 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.2s;
}

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

header.scrolled .logo img {
  height: 64px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
  align-items: center;
}

.nav-links li {
  opacity: 0;
  transform: translateY(-20px);
  animation: headerFadeDown 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.4s; }
.nav-links li:nth-child(3) { animation-delay: 0.5s; }
.nav-links li:nth-child(4) { animation-delay: 0.6s; }
.nav-links li:nth-child(5) { animation-delay: 0.7s; }
.nav-links li:nth-child(6) { animation-delay: 0.8s; }

@keyframes headerFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-white);
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

.nav-links a.active,
.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-btn-order {
  background-color: #e13a2c;
  color: #fff !important;
  padding: 0.6rem 1.6rem !important;
  border-radius: var(--radius-lg);
  font-weight: 700;
  opacity: 1 !important;
  display: inline-block;
  transition: var(--transition-fast);
}

.nav-links a.nav-btn-order:hover {
  background-color: #c22e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 58, 44, 0.4);
}

.nav-links a.nav-btn-order::after {
  display: none !important;
}

.nav-links a.nav-btn-franchise {
  background-color: #00b069;
  color: #fff !important;
  padding: 0.6rem 1.6rem !important;
  border-radius: var(--radius-lg);
  font-weight: 700;
  opacity: 1 !important;
  display: inline-block;
  transition: var(--transition-fast);
}

.nav-links a.nav-btn-franchise:hover {
  background-color: #009056;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 176, 105, 0.4);
}

.nav-links a.nav-btn-franchise::after {
  display: none !important;
}

/* Equal sizing for the two CTA buttons + tighter spacing between them */
.nav-links a.nav-btn-order,
.nav-links a.nav-btn-franchise {
  min-width: 150px;
  text-align: center;
}

.nav-links li:last-child {
  margin-left: -2rem;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: headerFadeDown 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s;
}

.nav-action-btn {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.nav-action-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: scale(1.05);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-red);
  color: var(--text-white);
  border-radius: var(--radius-round);
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO / MAIN SLIDER
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), #000000);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 60px;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-welcome {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(1.8rem, 3.8vw, 3.8rem);
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}

/* Line reveal animations */
.line-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 5px;
}

.line-text {
  display: block;
  transform: translateY(100%);
  animation: revealLine 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.animate-lines .line-wrapper:nth-child(1) .line-text {
  animation-delay: 0.2s;
}

.animate-lines .line-wrapper:nth-child(2) .line-text {
  animation-delay: 0.4s;
}

.animate-lines .line-wrapper:nth-child(3) .line-text {
  animation-delay: 0.6s;
}

@keyframes revealLine {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: heroBannerReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.7s;
}

.hero-banner img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@keyframes heroBannerReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ==========================================================================
   APP VIEWS & PAGES
   ========================================================================== */
.view-section {
  display: block;
  opacity: 1;
}

/* Page Pad wrapper */
.page-pad {
  padding: 8rem 0 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   SECTIONS: ABOUT / INTRODUCTION
   ========================================================================== */
.about-intro {
  padding: 8rem 0;
  position: relative;
}

.about-intro::before {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  width: 150px;
  height: 300px;
  background-image: url('assets/beans.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTIONS: FEATURES GRID
   ========================================================================== */
.features-section {
  padding: 4rem 0 8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(239, 174, 84, 0.3);
  box-shadow: var(--shadow-premium);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  background-color: rgba(239, 174, 84, 0.05);
  color: var(--accent-gold);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
}

/* ==========================================================================
   SECTIONS: COME & TRY (SPLIT COLLAGE)
   ========================================================================== */
.come-try-section {
  padding: 8rem 0;
  background-color: #000000;
  position: relative;
}

.come-try-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: stretch;
}

.come-try-text p {
  color: var(--text-white);
}

.come-try-text .section-title {
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.collage-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  height: 100%;
}

.collage-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  position: relative;
  box-shadow: var(--shadow-premium);
}

.collage-item--single {
  grid-column: 1 / -1;
  height: 100%;
  min-height: 448px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.collage-item:hover img {
  transform: scale(1.08);
}

.play-trigger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: var(--text-white);
  color: var(--bg-dark);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.play-trigger-btn svg {
  margin-left: 5px;
  transition: var(--transition-fast);
}

.play-trigger-btn:hover {
  background-color: var(--accent-red);
  color: var(--text-white);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 15px rgba(0, 176, 105, 0.2);
}

.check-list {
  list-style: none;
  margin: 2rem 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-white);
}

.check-list svg {
  color: var(--accent-gold);
}

/* ==========================================================================
   SECTIONS: THE MENU (OUR SPECIALS)
   ========================================================================== */
.menu-section {
  padding: 8rem 0;
  background-image: url('assets/IMG_MENU.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .menu-section {
    background-image: url('assets/IMG_MENU_MOBILE.png');
  }
}

/* Dark text for the light (#fff4c6) Our Menu background */
.menu-section .section-title,
.menu-section .menu-item-title-row h4 {
  color: #2a1a08;
}

.menu-section .menu-intro-text,
.menu-section .menu-item-desc {
  color: #5a4628;
}

.menu-section .menu-item-price {
  color: #a8761c;
}

.menu-section .menu-item-title-row .menu-item-dots {
  border-bottom-color: rgba(42, 26, 8, 0.25);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

/* Novo layout dos itens de menu */
.menu-item-row-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.menu-item-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.menu-item-thumb {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  transition: var(--transition-fast);
}

.menu-item-thumb:hover {
  transform: scale(1.08);
}

/* Efeito de Popover de Imagem maior no Hover */
.menu-item-popover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  width: 280px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  pointer-events: none;
}

.menu-item-popover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* O popover sempre abre para a direita */
.menu-item-image-wrapper:hover .menu-item-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.menu-item-popover {
  left: 95px;
  right: auto;
}

/* Detalhes do item */
.menu-item-info {
  flex-grow: 1;
  padding-top: 5px;
}

.menu-item-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 5px;
}

.menu-item-title-row h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.menu-item-title-row .menu-item-dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.15);
  margin: 0 15px;
  height: 1px;
}

.menu-item-title-row .menu-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-gold);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.menu-intro-text {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTIONS: VIDEO CTA BANNER
   ========================================================================== */
.video-banner {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.video-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.video-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.video-banner-btn {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-round);
  background-color: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.video-banner-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(239, 174, 84, 0.4);
}

/* ==========================================================================
   SECTIONS: TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
  padding: 8rem 0;
  background-color: #050505;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
  height: 380px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-round);
  border: 3px solid var(--accent-gold);
  object-fit: cover;
  margin-bottom: 2rem;
}

.testimonial-content {
  font-size: 1.3rem;
  color: var(--text-white);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial-ctrl-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.testimonial-ctrl-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* ==========================================================================
   SECTIONS: PARTNERS GRID
   ========================================================================== */
.partners-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  opacity: 0.3;
  transition: var(--transition-fast);
  cursor: default;
}

.partner-logo:hover {
  opacity: 1;
  color: var(--accent-gold);
  transform: scale(1.05);
}

/* ==========================================================================
   VIEW: SHOP PAGE & PRODUCT LISTINGS
   ========================================================================== */
.shop-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 174, 84, 0.3);
  box-shadow: var(--shadow-premium);
}

.product-image {
  height: 320px;
  overflow: hidden;
  position: relative;
  background-color: #0b0c10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-red);
  color: var(--text-white);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-white);
}

.product-add-btn {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-add-btn:hover {
  background-color: var(--accent-gold-hover);
  transform: scale(1.08);
}


/* ==========================================================================
   VIEW: OUR LOCATION — SPLIT LAYOUT
   ========================================================================== */
.location-split-section {
  padding: 0 !important;
  overflow: hidden;
}

.location-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

/* LEFT: overlapping image collage */
.location-collage {
  position: relative;
  background-color: var(--bg-dark);
  overflow: hidden;
  min-height: 580px;
}

.loc-img-back {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 62%;
  height: 85%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  filter: brightness(0.9);
}

.loc-img-front {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 55%;
  height: 75%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: -12px -12px 0 2px var(--accent-gold);
}

/* RIGHT: text content */
.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
  background-color: var(--bg-dark);
}

.location-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.6rem;
  margin-top: 2rem;
  font-family: var(--font-body);
}

/* Hours list */
.hours-units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.hours-units .hours-day {
  min-width: 0;
}

@media (max-width: 1200px) {
  .hours-units {
    grid-template-columns: 1fr;
  }
}

.hours-unit-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-white);
  margin: 0 0 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent-gold);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  min-width: 120px;
}

.hours-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  margin: 0 12px;
  position: relative;
  top: -3px;
}

.hours-time {
  font-size: 0.95rem;
  color: var(--text-white);
  white-space: nowrap;
  font-weight: 500;
}

.hours-address {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-gold-light);
}


/* ==========================================================================
   CART SLIDE-OUT PANEL
   ========================================================================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  z-index: 1060;
  box-shadow: var(--shadow-premium);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.cart-close-btn:hover {
  color: var(--accent-red);
}

.cart-body {
  padding: 2rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-empty-message {
  text-align: center;
  color: var(--text-muted);
  margin-top: 4rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
  width: 70px;
  height: 70px;
  background-color: #0b0c10;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--accent-gold);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.qty-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-white);
  width: 25px;
  height: 25px;
  border-radius: var(--radius-round);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.cart-item-remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-item-remove-btn:hover {
  color: var(--accent-red);
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.2);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.cart-subtotal span:last-child {
  color: var(--accent-gold);
}

.cart-footer .btn {
  width: 100%;
}

/* ==========================================================================
   VIDEO MODAL POPUP
   ========================================================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: var(--shadow-premium);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.video-modal-close:hover {
  color: var(--accent-red);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-wrap {
  background-color: #0b0d14;
  padding: 6rem 0 3rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 72px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--text-white);
}

.footer-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-menu a:hover {
  color: var(--accent-gold);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-circle-btn {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-round);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-circle-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animation Utilities */
.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}/* ==========================================================================
   CATEGORY BANNER & FULL MENU PAGE
   ========================================================================== */
.menu-category-section {
  scroll-margin-top: 170px; /* Accounts for header + sticky category menu */
  margin-bottom: 5rem;
}

.category-banner {
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/menu_category_header.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.category-title-box {
  position: relative;
  z-index: 2;
  text-align: center;
}

.category-title-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 700;
  /* mesmo vermelho do .btn-primary e do botao ORDER NOW */
  color: #e13a2c;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.category-nav-bar {
  position: sticky;
  top: 80px; /* aligns below header.scrolled */
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 0;
  margin-bottom: 3rem;
  width: 100%;
  transition: top 0.4s ease;
}

/* ScrollSpy smooth links */
.category-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch; /* smooth touch scrolling on mobile */
}

.category-nav-container::-webkit-scrollbar {
  display: none;
}

.category-nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  padding-bottom: 8px;
  position: relative;
  transition: var(--transition-fast);
}

.category-nav-link:hover,
.category-nav-link.active {
  color: var(--accent-gold);
}

.category-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition-fast);
  transform-origin: center;
}

.category-nav-link.active::after {
  transform: scaleX(1);
}

/* ==========================================================================
   MEDIA QUERY RESPONSIVENESS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-banner {
    justify-content: center;
  }

  .hero-banner img {
    max-width: 340px;
  }

  .grid-2,
  .come-try-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-split-inner {
    grid-template-columns: 1fr;
  }

  .location-collage {
    min-height: 360px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .location-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .logo img {
    height: 56px;
  }

  .nav-actions {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-normal);
    z-index: 999;
  }

  .nav-links li:last-child {
    margin-left: 0;
  }

  .nav-links li {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .nav-links.open {
    left: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .collage-container {
    grid-template-columns: 1fr;
  }
  
  .collage-item {
    height: 300px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .form-group-full,
  .booking-form button {
    grid-column: span 1;
  }

  /* Responsive styles for Category Banners & Menu Nav */
  header.scrolled {
    height: 70px;
  }
  .category-nav-bar {
    position: sticky;
    top: 70px;
    padding: 0.8rem 0;
  }
  .category-nav-container {
    justify-content: flex-start;
    gap: 1.5rem;
  }
  .category-banner {
    height: 180px;
    background-image: url('assets/menu_category_header_mobile.png');
    margin-top: 2rem;
  }
  .category-title-box h2 {
    font-size: clamp(0.95rem, 5.4vw, 1.9rem);
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   MENU PRODUCT GALLERY (modal carousel)
   ========================================================================== */

/* Produtos sem foto usam o placeholder: nada de cursor de clique nem zoom */
.menu-item-image-wrapper:not([data-product]) .menu-item-thumb {
  cursor: default;
}
.menu-item-image-wrapper:not([data-product]) .menu-item-thumb:hover {
  transform: none;
}
.menu-item-image-wrapper[data-product] .menu-item-thumb {
  cursor: zoom-in;
}

body.mg-open {
  overflow: hidden;
}

.menu-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.menu-gallery-modal[hidden] {
  display: none;
}

.mg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  animation: mgFade 0.25s ease;
}

.mg-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  animation: mgRise 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes mgFade {
  from { opacity: 0; }
}

@keyframes mgRise {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
}

.mg-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
  padding-right: 3rem;
}

.mg-close {
  position: absolute;
  top: -0.4rem;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-round);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mg-close svg {
  width: 42%;
  height: 42%;
  display: block;
}

.mg-close:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.mg-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-image {
  max-width: 100%;
  max-height: min(70vh, 720px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  background: var(--bg-card);
}

.mg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-round);
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mg-arrow svg {
  width: 46%;
  height: 46%;
  display: block;
}

.mg-arrow:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.mg-prev { left: -0.5rem; }
.mg-next { right: -0.5rem; }

/* Produto com uma unica foto: sem setas, sem contador, sem miniaturas */
.menu-gallery-modal.is-single .mg-arrow,
.menu-gallery-modal.is-single .mg-counter,
.menu-gallery-modal.is-single .mg-thumbs {
  display: none;
}

.mg-counter {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.mg-thumbs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mg-thumbs button {
  width: 72px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: none;
  cursor: pointer;
  opacity: 0.55;
  transition: var(--transition-fast);
}

.mg-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mg-thumbs button:hover {
  opacity: 1;
}

.mg-thumbs button.is-active {
  opacity: 1;
  border-color: var(--accent-gold);
}

@media (max-width: 768px) {
  .menu-gallery-modal {
    padding: 1rem 0.6rem;
  }
  .mg-image {
    max-height: 58vh;
  }
  .mg-arrow {
    width: 42px;
    height: 42px;
  }
  .mg-prev { left: 0; }
  .mg-next { right: 0; }
  .mg-thumbs button {
    width: 56px;
    height: 42px;
  }
}

/* ==========================================================================
   SECTIONS: CUSTOMER REVIEWS (carrossel infinito de cards)
   ==========================================================================
   Varios depoimentos visiveis ao mesmo tempo, deslizando em loop continuo.
   A faixa e duplicada em JS: ao chegar no fim da copia, o transform volta
   ao inicio sem transicao, entao a emenda nao aparece.
   ========================================================================== */

.reviews-head {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-head .section-title {
  margin-bottom: 1.2rem;
}

/* Selo: apenas estrelas + "on Google" */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

a.reviews-badge:hover {
  border-color: var(--accent-gold);
  background: rgba(239, 174, 84, 0.08);
}

.reviews-badge-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  display: block;
}

/* Trilho */
.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.review-card:hover {
  border-color: rgba(239, 174, 84, 0.45);
}

.review-card .review-stars {
  margin-bottom: 1.2rem;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-white);
  font-weight: 300;
  font-style: italic;
  /* empurra o autor para o rodape do card, alinhando entre cards vizinhos */
  flex-grow: 1;
  margin-bottom: 1.6rem;
}

/* Depoimentos longos entram truncados, com "Read more" para expandir.
   O limite e por linhas, entao se ajusta sozinho quando o card muda de
   largura entre breakpoints. */
.review-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  overflow: hidden;
}

.review-more {
  align-self: flex-start;
  margin: -0.9rem 0 1.6rem;
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.review-more:hover {
  border-bottom-color: var(--accent-gold);
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 3px;
}

.review-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.reviews-ctrl-btn {
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-round);
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.reviews-ctrl-btn svg {
  width: 40%;
  height: 40%;
  display: block;
}

.reviews-ctrl-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
}

@media (max-width: 992px) {
  .review-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 5rem 0;
  }
  .review-card {
    flex-basis: 100%;
  }
  .reviews-controls {
    margin-top: 2rem;
  }
}

/* Sem animacao para quem pede menos movimento */
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    transition: none !important;
  }
}
