/* ===== RESET E VARIÁVEIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4A4A4A;
  --secondary-color: #1A1A1A;
  --accent-color: #808080;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F5F5F5;
  --white: #FFFFFF;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* ===== HEADER E NAVEGAÇÃO ===== */
header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #003d6b 100%);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #D4AF37;
  text-decoration: none;
  letter-spacing: 2px;
  flex-shrink: 0;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--accent-color);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #4A4A4A 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="%23FF6B35"/><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: var(--white);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
  background-color: transparent;
  border-color: var(--white);
}

.cta-button.secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SEÇÕES ===== */
section {
  padding: 4rem 0;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 1rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* ===== GRID DE EQUIPAMENTOS ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.equipment-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.equipment-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.equipment-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.equipment-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.equipment-card a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.equipment-card a:hover {
  color: var(--accent-color);
}

/* ===== GALERIA DE IMAGENS ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
}

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

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

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background-color: var(--white);
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 12px;
  overflow: hidden;
}

.modal-content img {
  width: 100%;
  height: auto;
  display: block;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close:hover {
  background: rgba(0, 0, 0, 0.8);
}

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

/* ===== FOOTER ===== */
footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-color);
}

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

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1.5rem;
}

.whatsapp-button:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero p {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-button {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 2rem 0;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}


/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #003d6b 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* ===== GALERIA DE IMAGENS ===== */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ===== CTA NAV ===== */
.cta-nav {
  background: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-nav:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== HERO LOGO ===== */
.hero-logo {
  position: absolute;
  top: 20px;
  left: calc(20px + 2cm);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 280px;
    height: 280px;
    top: 10px;
    left: 10px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}


/* ======= CEATEM - CORRECOES CSS (by Claude) ======= */

/* CORRECAO 1 (CRITICA): Logo cobrindo o titulo */
.hero-logo { display: none !important; }

.hero {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 520px !important;
  padding: 60px 20px !important;
  text-align: center !important;
  position: relative !important;
}

.hero-content {
  position: relative !important;
  z-index: 5 !important;
  width: 100% !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero-content h1 {
  font-size: 2.8rem !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
  font-weight: 800 !important;
}

.hero-content p {
  font-size: 1.15rem !important;
  margin-bottom: 32px !important;
  opacity: 0.95 !important;
}

.hero-content .cta-button {
  display: inline-block !important;
  margin: 8px !important;
  padding: 14px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

/* CORRECAO 2: Icones quebrados */
.contact-buttons img, .cta-button img, footer img { display: none !important; }

a[href*="wa.me"], a[href*="whatsapp"] {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}

/* CORRECAO 3: Footer links */
footer a { font-weight: 600 !important; text-decoration: none !important; }
footer a[href*="instagram"] { color: #E1306C !important; }
footer a[href*="wa.me"], footer a[href*="whatsapp"] { color: #25D366 !important; background: none !important; }
footer a[href*="mailto"] { color: #4A90D9 !important; background: none !important; }

/* CORRECAO 4: Botao WhatsApp flutuante */
#wa-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  width: 58px !important;
  height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease !important;
}

#wa-float:hover { transform: scale(1.1) !important; }

/* CORRECAO 5: Mobile */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.9rem !important; }
  .hero { min-height: 420px !important; padding: 40px 16px !important; }
  .hero-content .cta-button { display: block !important; width: 85% !important; margin: 8px auto !important; }
  #wa-float { bottom: 16px !important; right: 16px !important; width: 52px !important; height: 52px !important; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem !important; }
}

html { scroll-behavior: smooth !important; }






/*
 * ================================================================
 *  CEATEM — REDESIGN v4 — PALETA JK ESTÉTICA + GOLD ACCENT
 *  Inspirado em jkesteticaavancada.com.br
 *  Font: Syne (headings) + DM Sans (body)
 *  Paleta: warm browns, creams, gold
 * ================================================================
 */

/* ── GOOGLE FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── 1. VARIÁVEIS ────────────────────────────────────────────── */
:root {
  /* Warm browns — inspirados no JK Estética */
  --brown-deep:     #3D2E24;
  --brown-dark:     #4A3728;
  --brown-mid:      #634C40;
  --brown-warm:     #8B6F5E;
  --brown-light:    #A88972;
  --brown-pale:     #C8B5A7;
  --brown-muted:    #B89F8C;

  /* Creams & lights */
  --cream:          #F6EBE5;
  --cream-soft:     #FDF8F5;
  --off-white:      #FAFAF8;
  --light-gray:     #F3F3F3;
  --border-light:   #E8E0DA;
  --border-warm:    #D6C9BF;

  /* Gold accent — identidade CEATEM */
  --gold:           #C9A84C;
  --gold-dark:      #8B6914;
  --gold-bright:    #F0C040;
  --gold-pale:      #E8D5A0;
  --gold-gradient:  linear-gradient(135deg, #8B6914 0%, #C9A84C 45%, #F0C040 75%, #C9A84C 100%);
  --gold-gradient-h: linear-gradient(90deg, transparent 0%, #C9A84C 30%, #F0C040 50%, #C9A84C 70%, transparent 100%);

  /* Semantic */
  --text-dark:      #2B1F18;
  --text-body:      #4A3728;
  --text-muted:     #8B7A6E;
  --text-light:     rgba(255,255,255,0.85);
  --white:          #FFFFFF;

  /* Fonts */
  --font-heading:   'Syne', sans-serif;
  --font-body:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── 2. RESET GERAL ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box !important;
}

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: var(--font-body) !important;
  color: var(--text-body) !important;
  background: var(--cream-soft) !important;
  line-height: 1.7 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  overflow-x: hidden !important;
}

/* ── 3. HEADER ───────────────────────────────────────────────── */
header {
  background: var(--brown-deep) !important;
  padding: 0 !important;
  min-height: 80px !important;
  display: flex !important;
  align-items: center !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  box-shadow: 0 2px 20px rgba(61, 46, 36, 0.25) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2) !important;
  width: 100% !important;
}

header .container,
header > div,
header > nav,
header nav {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

header .logo,
header a.logo,
header .navbar-brand {
  font-family: var(--font-heading) !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-decoration: none !important;
}

header nav a,
header .nav-link,
header ul li a {
  font-family: var(--font-body) !important;
  color: var(--brown-pale) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 8px 18px !important;
  transition: color 0.25s ease !important;
  -webkit-text-fill-color: var(--brown-pale) !important;
}

header nav a:hover,
header .nav-link:hover,
header ul li a:hover {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}

/* ── 4. HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(175deg, #1A110B 0%, var(--brown-deep) 50%, #2A1D14 100%) !important;
  min-height: 720px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 80px 24px 90px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Overlay sutil de textura */
.hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

/* Linha dourada inferior */
.hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: var(--gold-gradient-h) !important;
}

/* Logo CEATEM — centralizada, grande, quadrada */
.hero-logo {
  display: block !important;
  width: 190px !important;
  height: 190px !important;
  object-fit: contain !important;
  margin: 0 auto 40px !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(201, 168, 76, 0.30) !important;
  box-shadow:
    0 0 0 8px rgba(201,168,76,0.05),
    0 20px 60px rgba(201,168,76,0.20),
    0 8px 32px rgba(0,0,0,0.45) !important;
  order: -1 !important;
  position: relative !important;
  z-index: 2 !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero-content h1 {
  font-family: var(--font-heading) !important;
  font-size: 3.2rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: var(--white) !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 12px !important;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5) !important;
  -webkit-text-fill-color: var(--white) !important;
}

/* Linha dourada abaixo do H1 */
.hero-content h1::after {
  content: '' !important;
  display: block !important;
  width: 60px !important;
  height: 2px !important;
  background: var(--gold-gradient-h) !important;
  margin: 22px auto 26px !important;
  border-radius: 2px !important;
}

.hero-content p {
  font-family: var(--font-body) !important;
  font-size: 1.08rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-bottom: 44px !important;
  letter-spacing: 0.3px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
}

/* Botões hero — lado a lado */
.hero-content a.cta-button,
.hero-content .cta-button {
  display: inline-block !important;
  margin: 8px 10px !important;
  font-family: var(--font-body) !important;
}

/* Botão primário — dourado sólido */
.hero-content .cta-button:not(.secondary) {
  background: var(--gold-gradient) !important;
  color: var(--brown-deep) !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 2px !important;
  padding: 16px 44px !important;
  border-radius: 3px !important;
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.40) !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
  text-transform: uppercase !important;
  -webkit-text-fill-color: var(--brown-deep) !important;
}

.hero-content .cta-button:not(.secondary):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.60) !important;
}

/* Botão "Fale Conosco" — contorno dourado */
.hero-content .cta-button.secondary {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1.5px solid rgba(201,168,76,0.5) !important;
  font-weight: 600 !important;
  padding: 15px 42px !important;
  border-radius: 3px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  font-size: 0.82rem !important;
  transition: background 0.25s, border-color 0.25s !important;
  -webkit-text-fill-color: var(--gold) !important;
}

.hero-content .cta-button.secondary:hover {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: var(--gold) !important;
}

/* ── 5. SEÇÕES — ALTERNÂNCIA DE FUNDO ────────────────────────── */

/* Sobre — creme quente (como JK) */
#sobre {
  background: var(--cream) !important;
  padding: 90px 24px !important;
  position: relative !important;
}

#sobre::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: var(--gold-gradient-h) !important;
}

/* Equipamentos — marrom profundo (como JK dark sections) */
#equipamentos {
  background: var(--brown-deep) !important;
  padding: 90px 24px !important;
  color: var(--white) !important;
  position: relative !important;
}

#equipamentos::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: var(--gold-gradient-h) !important;
}

#equipamentos p,
#equipamentos li {
  color: var(--text-light) !important;
}

/* Contato — marrom escuro, TOTALMENTE CENTRALIZADO */
#contato {
  background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-deep) 100%) !important;
  padding: 90px 24px !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  position: relative !important;
  text-align: center !important;
}

#contato::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: var(--gold-gradient-h) !important;
}

#contato p {
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
}

/* ── CENTRALIZAR CONTATO COMPLETO ────────────────────────────── */
#contato > *,
#contato .container,
#contato > div {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#contato > div > div,
#contato .contact-buttons,
#contato .buttons,
#contato > div:last-of-type {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  max-width: 420px !important;
  margin: 32px auto 0 !important;
  width: 100% !important;
}

/* ── 6. TÍTULOS DAS SEÇÕES — SYNE ────────────────────────────── */
section h2,
.container > h2,
#sobre h2, #equipamentos h2, #cursos h2, #contato h2 {
  font-family: var(--font-heading) !important;
  font-size: 2.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  text-align: center !important;
}

/* H2 em fundo claro = marrom */
#sobre h2 {
  color: var(--brown-deep) !important;
  -webkit-text-fill-color: var(--brown-deep) !important;
}

/* H2 em fundo escuro = dourado */
#equipamentos h2, #contato h2 {
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Linha dourada abaixo dos H2 */
section h2::after,
.container > h2::after {
  content: '' !important;
  display: block !important;
  width: 50px !important;
  height: 2px !important;
  background: var(--gold-gradient-h) !important;
  margin: 16px auto 40px !important;
  border-radius: 2px !important;
}

/* ── 7. CARDS DE EQUIPAMENTOS ────────────────────────────────── */
.equipment-section {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(200,181,167,0.12) !important;
  border-left: 4px solid var(--gold-dark) !important;
  border-radius: 8px !important;
  padding: 30px 28px 26px !important;
  margin-bottom: 20px !important;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s !important;
  position: relative !important;
  backdrop-filter: blur(4px) !important;
}

.equipment-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 1px !important;
  background: var(--gold-gradient-h) !important;
  border-radius: 8px 8px 0 0 !important;
  opacity: 0 !important;
  transition: opacity 0.3s !important;
}

.equipment-section:hover::before { opacity: 1 !important; }

.equipment-section:hover {
  border-left-color: var(--gold) !important;
  box-shadow: 0 12px 48px rgba(201, 168, 76, 0.12) !important;
  transform: translateY(-3px) !important;
}

.equipment-section h3 {
  font-family: var(--font-heading) !important;
  color: var(--gold) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.5px !important;
}

.equipment-section h4 {
  color: var(--gold-pale) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 14px !important;
  font-weight: 500 !important;
}

.equipment-section ul li {
  color: var(--text-light) !important;
  padding: 3px 0 !important;
  font-size: 0.92rem !important;
}

.equipment-section ul li strong {
  color: var(--gold-pale) !important;
}

.equipment-section .cta-button {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  padding: 10px 26px !important;
  border-radius: 3px !important;
  letter-spacing: 1px !important;
  transition: background 0.25s, border-color 0.25s !important;
  -webkit-text-fill-color: var(--gold) !important;
  margin-top: 16px !important;
  text-transform: uppercase !important;
}

.equipment-section .cta-button:hover {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: var(--gold) !important;
}

/* ── 8. TABS DE EQUIPAMENTOS ─────────────────────────────────── */
.tabs-nav {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(200,181,167,0.15) !important;
  border-radius: 8px !important;
  padding: 6px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
  margin-bottom: 28px !important;
}

.tab-button {
  background: transparent !important;
  color: var(--brown-pale) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 10px 18px !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.25s, color 0.25s !important;
  letter-spacing: 0.5px !important;
}

.tab-button:hover {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.08) !important;
}

.tab-button.active {
  background: var(--gold-gradient) !important;
  color: var(--brown-deep) !important;
  font-weight: 700 !important;
}

/* ── 9. GALERIA DE FOTOS ─────────────────────────────────────── */
.gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 16px !important;
  margin-top: 24px !important;
}

.gallery-item {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background: var(--brown-dark) !important;
  border: 1px solid rgba(200,181,167,0.12) !important;
  aspect-ratio: 4/3 !important;
  cursor: pointer !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.gallery-item:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 12px 44px rgba(201, 168, 76, 0.20) !important;
  border-color: rgba(201,168,76,0.3) !important;
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  transition: transform 0.5s ease !important;
  filter: brightness(0.92) contrast(1.05) saturate(1.05) !important;
}

.gallery-item:hover img {
  transform: scale(1.06) !important;
  filter: brightness(1.02) contrast(1.08) saturate(1.1) !important;
}

.gallery-item::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, transparent 55%, rgba(61,46,36,0.3) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s !important;
  pointer-events: none !important;
}

.gallery-item:hover::after { opacity: 1 !important; }

.gallery-item::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: var(--gold-gradient-h) !important;
  z-index: 2 !important;
  transform: scaleX(0) !important;
  transition: transform 0.35s ease !important;
}

.gallery-item:hover::before { transform: scaleX(1) !important; }

/* ── 10. SEÇÃO SOBRE ─────────────────────────────────────────── */
#sobre p {
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  color: var(--text-body) !important;
  line-height: 1.9 !important;
  max-width: 720px !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
  font-weight: 400 !important;
  -webkit-text-fill-color: var(--text-body) !important;
}

#sobre strong {
  color: var(--brown-mid) !important;
  font-weight: 700 !important;
}

/* ── 11. BOTÕES CONTATO — CENTRALIZADOS ──────────────────────── */

/* WhatsApp verde */
a[href*="wa.me"],
a[href*="whatsapp"],
.cta-button[href*="wa.me"],
.cta-button[href*="whatsapp"] {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
  -webkit-text-fill-color: #fff !important;
  border-radius: 3px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35) !important;
  display: block !important;
  width: 100% !important;
  max-width: 380px !important;
  text-align: center !important;
  padding: 18px 32px !important;
  margin: 0 auto !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

a[href*="wa.me"]:hover,
a[href*="whatsapp"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.50) !important;
}

/* Botão Email na seção contato */
#contato .cta-button:not([href*="wa.me"]):not([href*="whatsapp"]) {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1.5px solid rgba(201,168,76,0.45) !important;
  -webkit-text-fill-color: var(--gold) !important;
  border-radius: 3px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.5px !important;
  transition: background 0.25s, border-color 0.25s !important;
  display: block !important;
  width: 100% !important;
  max-width: 380px !important;
  text-align: center !important;
  padding: 16px 32px !important;
  margin: 0 auto !important;
}

#contato .cta-button:not([href*="wa.me"]):not([href*="whatsapp"]):hover {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: var(--gold) !important;
}

/* ── 12. MODAL ───────────────────────────────────────────────── */
.modal { background: rgba(26, 17, 11, 0.94) !important; }

.modal-content {
  background: var(--brown-dark) !important;
  border: 1px solid rgba(200,181,167,0.15) !important;
  border-top: 3px solid var(--gold) !important;
  border-radius: 8px !important;
}

.close { color: var(--gold) !important; font-size: 2rem !important; opacity: 0.8 !important; }
.close:hover { opacity: 1 !important; }

/* ── 13. FOOTER ──────────────────────────────────────────────── */
footer {
  background: #1A110B !important;
  border-top: 2px solid rgba(201,168,76,0.20) !important;
  padding: 48px 24px !important;
}

footer p, footer span {
  color: var(--brown-warm) !important;
  font-family: var(--font-body) !important;
  font-size: 0.83rem !important;
  -webkit-text-fill-color: var(--brown-warm) !important;
}

footer .logo,
footer strong {
  font-family: var(--font-heading) !important;
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 1.1rem !important;
  letter-spacing: 3px !important;
  font-weight: 800 !important;
}

footer a {
  color: var(--brown-muted) !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  transition: color 0.25s !important;
  background: none !important;
  -webkit-text-fill-color: var(--brown-muted) !important;
}

footer a:hover {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}

/* ── 14. BOTÃO FLUTUANTE WHATSAPP ────────────────────────────── */
#wa-float {
  position: fixed !important;
  bottom: 28px !important; right: 28px !important;
  z-index: 9999 !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  width: 60px !important; height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.50) !important;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

#wa-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.70) !important;
}

/* ── 15. RESPONSIVIDADE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.1rem !important; }

  .hero {
    min-height: 560px !important;
    padding: 60px 16px 70px !important;
  }

  .hero-logo {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 30px !important;
  }

  .gallery { grid-template-columns: repeat(2, 1fr) !important; }
  section h2 { font-size: 1.7rem !important; }
  .equipment-section { padding: 22px 18px !important; }
  .tabs-nav { gap: 3px !important; }
  .tab-button { font-size: 0.76rem !important; padding: 8px 12px !important; }
  header { min-height: 64px !important; }
  header .container,
  header > div,
  header > nav,
  header nav { padding: 0 20px !important; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem !important; }
  .hero-logo { width: 120px !important; height: 120px !important; }

  .gallery { grid-template-columns: 1fr !important; }

  .hero-content .cta-button {
    display: block !important;
    width: 90% !important;
    margin: 8px auto !important;
    text-align: center !important;
  }

  #wa-float { bottom: 16px !important; right: 16px !important; width: 54px !important; height: 54px !important; }
}

/* ── 16. ACESSIBILIDADE ──────────────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px !important;
}

/* ── 17. SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brown-deep); }
::-webkit-scrollbar-thumb { background: var(--brown-warm); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── 18. ANIMAÇÕES SUTIS ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  animation: fadeInUp 0.8s ease-out !important;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out 0.2s both !important;
}

/* PATCH: FULL-WIDTH SECTIONS */
section#contato,
section#sobre,
section#equipamentos,
section#home {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}
section#sobre > *,
section#equipamentos > * {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
section#contato > * {
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
