/* ========================================
   RESET E BASE
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --surface: #ffffff;
  --surface-alt: #f3f5f8;
  --text: #0f172a;
  --muted: #5f6b7a;
  --line: #e7ebf0;
  --primary: #ff5a1f;
  --primary-dark: #e34810;
  --secondary: #111827;
  --accent: #ffc83d;
  --success: #25d366;
  --green: #39b000;
  --shadow-sm: 0 10px 24px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 22px 55px rgba(17, 24, 39, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* ========================================
   ELEMENTOS GERAIS
======================================== */
.section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 90, 31, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 90, 31, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: all var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff7b2b);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(255, 90, 31, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255, 90, 31, 0.28);
}

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
======================================== */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--success);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28);
}

/* ========================================
   HEADER
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.96rem;
  opacity: 0.9;
  transition: var(--transition);
}

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

.btn-header {
  min-height: 48px;
  padding: 0 20px;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ========================================
   MENU MOBILE
======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(86vw, 360px);
  height: 100vh;
  background: #0f172a;
  z-index: 1200;
  padding: 22px 18px 24px;
  display: flex;
  flex-direction: column;
  transition: left var(--transition);
  box-shadow: 18px 0 50px rgba(0, 0, 0, 0.25);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-logo {
  height: 42px;
  width: auto;
}

.menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-menu-body {
  display: grid;
  gap: 10px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 18px;
}

.mobile-menu-btn {
  width: 100%;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   HERO
======================================== */
.hero {
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-banner {
  position: relative;
  height: 100%;
  min-height: 440px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   SERVIÇOS / PREÇOS
======================================== */
.pricing-section {
  padding: 60px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.price-card {
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.price-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.price-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c2d12, #ff5a1f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-icon i {
  color: #fff;
  font-size: 18px;
}

.price-header h3 {
  font-size: 18px;
  line-height: 1.2;
}

.price {
  margin: 6px 0 12px;
  font-size: 14px;
  color: #64748b;
}

.price strong {
  font-size: 28px;
  color: var(--green);
  font-weight: 800;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.price-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
  position: relative;
  padding-left: 18px;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ========================================
   ABOUT / LOCATION
======================================== */
.about-section,
.location-section {
  padding: 74px 0;
}

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

.about-content h2,
.location-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.about-content p,
.location-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin: 22px 0;
}

.address-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.address-card strong {
  display: block;
  margin-bottom: 4px;
}

.address-card span {
  color: var(--muted);
}

.location-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  border: 1px solid var(--line);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  margin-top: 16px;
  background: #0f172a;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
  gap: 24px;
  padding: 56px 0 34px;
}

.footer-brand p,
.footer-column p,
.footer-column li,
.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column h3 {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.footer-column ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-column li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.footer-cta .btn {
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrapper {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

/* ========================================
   ANIMAÇÕES
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.16s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVIDADE
======================================== */
@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .site-header {
    background: rgba(15, 23, 42, 0.96);
  }

  .header-wrapper {
    min-height: 74px;
    justify-content: center;
  }

  .brand {
    margin: 0 auto;
  }

  .logo {
    height: 44px;
    max-width: 180px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-actions {
    display: none;
  }

  .hero,
  .about-section,
  .location-section {
    padding: 56px 0;
  }

  .hero-banner {
    min-height: 360px;
  }

  .about-image {
    min-height: 340px;
  }

  .map-card,
  .map-card iframe {
    min-height: 340px;
  }

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

  .footer-bottom-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 18px 0;
  }
}

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .btn {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-cta-group,
  .location-cta-group {
    flex-direction: column;
  }

  .section-head h2,
  .about-content h2,
  .location-content h2 {
    font-size: 1.85rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 14px;
  }
}