/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-blue: #004AAD;
  --brand-yellow: #FFCC00;
  --dark-bg: #0E1116;
  --light-bg: #FAFAF7;
  --text-dark: #1A1A1A;
  --text-light: #FAFAF7;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.kicker {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  color: var(--brand-yellow);
}

.text-highlight {
  color: var(--brand-yellow);
}

.text-brand {
  color: var(--brand-blue);
}

.rule {
  height: 4px;
  width: 60px;
  background-color: var(--brand-yellow);
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #003680;
}

.btn-highlight {
  background-color: var(--brand-yellow);
  color: var(--brand-blue);
}

.btn-highlight:hover {
  background-color: #FFB800;
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.2rem;
}

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

.btn-outline:hover {
  background-color: var(--brand-blue);
  color: var(--text-light);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.navbar.scrolled .logo {
  color: var(--text-dark);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--brand-yellow);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('/foto-piscina.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,74,173,0.85) 0%, rgba(14,17,22,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

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

.text-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Toys Grid */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
}

.card-img {
  height: 320px;
  background-size: cover;
  background-position: center top;
  cursor: pointer;
  transition: background-size 0.3s ease;
}
.card-img:hover {
  background-size: 105%;
}

.card-content {
  padding: 30px;
}

/* Promo Section */
.promo {
  background-color: #F5ECD7;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.promo-list {
  list-style: none;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.promo-list li {
  margin-bottom: 10px;
}

.price-tag {
  color: var(--brand-blue);
  margin-bottom: 20px;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  vertical-align: super;
}

.amount {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.cents {
  font-size: 2rem;
  font-weight: 700;
}

.brinde-alert {
  background: var(--brand-yellow);
  color: var(--text-dark);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 30px;
  display: inline-block;
}

.promo-image {
  height: 500px;
  padding: 20px;
  overflow: hidden;
}

/* Partners */
.partners {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.partners .btn-outline {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}

.partners .btn-outline:hover {
  background-color: var(--brand-yellow);
  color: var(--dark-bg);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--brand-yellow);
}

.footer p {
  opacity: 0.7;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Section */
.pricing {
  background-color: var(--light-bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 35px;
}
.pricing-card {
  padding: 35px 20px 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  overflow: visible !important;
}
.pricing-size {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
}
.pricing-size.strike {
  text-decoration: line-through;
  color: #ff4d4f;
}
.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 20px;
}
.pricing-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-yellow);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pricing-card.combo {
  padding-top: 45px;
  border: 2px solid var(--brand-yellow);
}

/* Gallery Section */
.gallery {
  background-color: var(--dark-bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
}
.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 0.9;
}
.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.05);
  opacity: 1;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: none;
}

/* Tables Section */
.tables-section {
  background-color: var(--light-bg);
}
.tables-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.tables-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.tables-pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.tp-box {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 15px;
  padding: 20px;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.tp-box h3 {
  font-size: 2rem;
  color: var(--brand-blue);
  margin: 10px 0;
}

/* Partners */
.partners-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.partners-text {
  flex: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}
.lightbox-content img, .lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .promo-content {
    grid-template-columns: 1fr;
  }
  
  .promo-image {
    height: 300px;
    order: -1;
  }
  
  .navbar .btn {
    display: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .tables-pricing {
    flex-direction: column;
  }
  
  .partners-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   NOVO: Melhorias sugeridas pelo Relatório
   ========================================================================== */

/* --- Urgência e Promoções --- */
.urgencia-texto {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff4d4f;
  margin-bottom: 12px;
}
.urgencia-promo {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ff4d4f;
  margin-top: -15px;
  margin-bottom: 25px;
  display: block;
}

/* --- Barra de Diferenciais (Hero) --- */
.features-bar {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.fb-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.fb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}
.fb-icon {
  font-size: 1.8rem;
  background: rgba(0, 74, 173, 0.05);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-blue);
}
.fb-item span {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* --- Seção Como Funciona --- */
.how-it-works {
  background-color: var(--light-bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.step-card {
  padding: 40px 25px 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid var(--brand-yellow);
  box-shadow: 0 4px 10px rgba(0, 74, 173, 0.2);
}
.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--brand-blue);
}
.step-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* --- Seção FAQ Accordion --- */
.faq {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.faq-list {
  max-width: 850px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  width: 100%;
  padding: 22px 30px;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-question:hover {
  background: rgba(0, 74, 173, 0.03);
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--brand-yellow);
  font-weight: 800;
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}
.faq-answer.active {
  max-height: 200px;
  padding-bottom: 22px;
}

/* --- Área de Atendimento --- */
.area-atendimento {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.area-text {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-top: 10px;
}
.area-text strong {
  color: var(--brand-blue);
}

/* --- Estilos da Seção de Chopp Germânia --- */
.chopp-section {
  color: var(--text-light);
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.chopp-section::before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  width: 800px;
  height: 800px;
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translate(-50%);
}
.chopp-header {
  margin-bottom: 40px;
}
.chopp-header-inner {
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  display: flex;
}
.chopp-logo-wrap {
  flex-shrink: 0;
}
.chopp-logo-img {
  object-fit: cover;
  border: 3px solid rgba(255, 196, 0, 0.4);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  box-shadow: 0 0 30px rgba(255, 196, 0, 0.15);
}
.chopp-header-text h2 {
  color: var(--text-light);
  margin-bottom: 10px;
}
.chopp-subtitle {
  opacity: .8;
  max-width: 600px;
  font-size: 1.1rem;
}
.chopp-tabs {
  border-bottom: 2px solid rgba(255, 196, 0, 0.2);
  gap: 12px;
  padding-bottom: 0;
  display: flex;
}
.chopp-tab {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  margin-bottom: -2px;
  padding: 14px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s;
}
.chopp-tab:hover {
  color: rgba(255, 255, 255, 0.85);
}
.chopp-tab.active {
  color: var(--brand-yellow);
  border-bottom-color: var(--brand-yellow);
}
.chopp-panel {
  padding-top: 40px;
}
.chopp-panel.hidden {
  display: none;
}
.style-selector {
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 30px;
  display: grid;
}
.style-btn {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}
.style-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 196, 0, 0.08);
  border-color: rgba(255, 196, 0, 0.4);
  transform: translateY(-3px);
}
.style-btn.active {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
  background: rgba(255, 196, 0, 0.12);
}
.style-badge {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  display: flex;
}
.style-detail-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 20px;
  min-height: 320px;
  padding: 35px;
  transition: all .4s;
}
.style-detail-inner {
  align-items: flex-start;
  gap: 40px;
  display: flex;
}
.style-info {
  flex: 1;
}
.style-name-big {
  color: var(--brand-yellow);
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 800;
}
.style-tags {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  display: flex;
}
.style-tag {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .78rem;
  font-weight: 700;
}
.style-description {
  opacity: .75;
  margin-bottom: 24px;
  font-size: .95rem;
  line-height: 1.7;
}
.style-cta-btn {
  background: var(--brand-yellow);
  color: #1a1a00;
  font-weight: 800;
}
.style-cta-btn:hover {
  background: #ffb800;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 196, 0, 0.3);
}
.price-table-wrap {
  min-width: 300px;
}
.price-table-title {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-size: .85rem;
  font-weight: 700;
}
.price-table {
  border-collapse: collapse;
  width: 100%;
}
.price-table th {
  color: var(--brand-yellow);
  text-align: left;
  background: rgba(255, 196, 0, 0.12);
  padding: 12px 16px;
  font-size: .9rem;
  font-weight: 700;
}
.price-table td {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 11px 16px;
  font-size: .95rem;
  transition: background .2s;
}
.price-table tr:hover td {
  background: rgba(255, 196, 0, 0.06);
}
.price-table td:first-child {
  color: var(--brand-yellow);
  font-weight: 700;
}
.price-table td:last-child {
  color: #6eff9a;
  font-weight: 600;
}
.promo-chopp-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  display: grid;
}
.promo-chopp-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 24px;
  transition: transform .3s, border-color .3s;
  display: flex;
  position: relative;
}
.promo-chopp-card:hover {
  border-color: rgba(255, 196, 0, 0.4);
  transform: translateY(-8px);
}
.promo-chopp-card.destaque {
  border-color: var(--brand-yellow);
  background: rgba(255, 196, 0, 0.07);
}
.promo-chopp-badge {
  background: var(--brand-yellow);
  color: #1a1a00;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 4px;
  padding: 5px 14px;
  font-size: .7rem;
  font-weight: 800;
}
.promo-chopp-icon {
  font-size: 2.5rem;
}
.promo-chopp-card h3 {
  color: var(--text-light);
  font-size: 1.2rem;
}
.promo-chopp-card p {
  opacity: .75;
  font-size: .9rem;
  line-height: 1.6;
}
.promo-chopp-price {
  color: var(--brand-yellow);
  margin: 6px 0;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.promo-chopp-detail {
  opacity: .55;
  margin-bottom: 6px;
  font-size: .8rem;
}
.chopeiras-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  display: grid;
}
.chopeira-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 30px;
  display: flex;
}
.chopeira-icon {
  font-size: 3rem;
}
.chopeira-card h3 {
  color: var(--text-light);
  font-size: 1.5rem;
}
.chopeira-card p {
  opacity: .7;
  font-size: .95rem;
  line-height: 1.6;
}
.chopeira-price {
  color: var(--brand-yellow);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.chopeira-label {
  opacity: .55;
  margin-bottom: 6px;
  font-size: .85rem;
}
.chopeira-obs {
  text-align: center;
  opacity: .8;
  background: rgba(255, 196, 0, 0.08);
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: .95rem;
  line-height: 1.6;
}

/* Colapsável para a Seção de Chopp */
.chopp-details-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.chopp-details-collapsible.active {
  max-height: 2500px; /* alto o suficiente para os painéis */
}
.chopp-toggle-wrap {
  text-align: center;
  margin: 30px 0;
}

/* --- Media Queries Auxiliares --- */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fb-content {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .chopp-header-inner {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
  .chopp-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  .chopp-tab {
    flex: 1;
    min-width: 130px;
    padding: 10px 14px;
    font-size: .85rem;
  }
  .style-selector {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .style-btn {
    padding: 10px 6px;
    font-size: .78rem;
  }
  .style-detail-inner {
    flex-direction: column;
    gap: 20px;
  }
  .price-table th, .price-table td {
    padding: 10px 8px;
    font-size: .85rem;
  }
  .promo-chopp-grid, .chopeiras-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .fb-content {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 480px) {
  .style-selector {
    grid-template-columns: repeat(4, 1fr);
  }
  .style-btn span:last-child {
    font-size: .7rem;
  }
}

