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

  :root {
    --teal-dark:  #1a7a6e;
    --teal-main:  #00c4a7;
    --black:      #1a1a1a;
    --gray-dark:  #3d4a52;
    --gray-mid:   #6b7a84;
    --gray-light: #e8ecee;
    --gray-bg:    #f5f6f7;
    --white:      #ffffff;
    --mint:       #d0ede9;
	  --turquesa: #47ead4;

      /* FONTES */
      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'Manrope', sans-serif;
      --font-ui: 'Inter', sans-serif;
    }

  html { scroll-behavior: smooth; }
   h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-title,
    .product-title,
    .product-category {
      font-family: var(--font-display);
      font-weight: 700;

    }

    body {
      font-family: var(--font-body);
      color: var(--black);
      background: var(--white);
      font-size: 15px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    button,
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-card,
    a.btn-card {
      font-family: var(--font-ui);
      font-weight: 700;
  }

   /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 80px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--borda);
    }

    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 42px; width: auto; display: block; object-fit: contain; }

    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(26,28,28,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--turquesa); }
    .nav-links a.active {
      color: var(--turquesa);
      padding-bottom: 2px;
    }

    .search-box {
      width: 205px; height: 40px;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      display: flex; align-items: center; gap: 10px;
      padding: 0 14px;
      background: #fff;
    }
    .search-box svg path { stroke: rgb(82,97,96); }
    .search-box input {
      width: 100%; border: none; outline: none; background: transparent;
      font-family: var(--font-ui); font-size: 14px; color: rgb(82,97,96);
    }
    .search-box input::placeholder { color: rgb(82,97,96); opacity: 1; }

  /* ─── HERO ─── */
  .hero {
    max-width: 1200px; margin: 0 auto;
    padding: 80px 40px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-text {}
  .hero-text h1 {
    font-family: var(--font-display);
    font-size: 64px; font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 24px;
  }
  .hero-text h1 span { color: var(--teal-main); display: block; }
  .hero-text p {
    font-size: 15px; color: var(--gray-dark);
    line-height: 1.75; max-width: 360px;
  }

  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: visible;
    background: transparent;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    background: transparent;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-img-placeholder svg { width: 100%; height: 100%; }

  .hero-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    background: var(--teal-main);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 15px; font-weight: 700;
    padding: 18px 28px;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,196,167,.3);
  }

  /* ─── CONTACT SECTION ─── */
  .contact-section {
    background: var(--gray-bg);
    padding: 100px 40px;
  }
  .contact-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 325px 1fr;
    gap: 40px;
    align-items: start;
  }

  /* Left panel */
  .contact-left h2 {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--black);
    display: inline-block;
  }
  .contact-info-list {
    display: flex; flex-direction: column; gap: 0;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
  }
  .contact-info-item:last-child { border-bottom: none; }
  .cii-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--mint);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }
  .cii-icon svg { width: 16px; height: 16px; stroke: var(--teal-dark); fill: none; stroke-width: 2; }
  .cii-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--gray-mid); margin-bottom: 3px;
  }
  .cii-value {
    font-size: 14px; font-weight: 600; color: var(--black);
    line-height: 1.4;
  }
  .cii-sub { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }

  .hours-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 24px;
  }
  .hours-card h3 {
    font-family: var(--font-display);
    font-size: 15px; font-weight: 700;
    margin-bottom: 18px;
  }
  .hours-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
  }
  .hours-row:last-child { border-bottom: none; }
  .hours-day { color: var(--gray-dark); }
  .hours-time { font-weight: 600; color: var(--black); text-align: right; line-height: 1.5; }
  .hours-time.closed { color: var(--teal-dark); font-weight: 700; }
  .hours-day.weekend { color: var(--teal-dark); font-weight: 600; }

  /* Right: form */
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    padding: 48px;
  }
  .contact-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    margin-bottom: 32px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-field { display: flex; flex-direction: column; gap: 7px; }
  .form-field.full { grid-column: 1/-1; }
  .form-field label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gray-mid);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    background: var(--gray-bg);
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--gray-mid); }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--teal-main);
    background: var(--white);
  }
  .form-field textarea { resize: vertical; min-height: 130px; }

  /* radio row */
  .radio-group { display: flex; gap: 24px; align-items: center; padding-top: 4px; }
  .radio-group label {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--gray-dark);
    font-weight: 400; letter-spacing: 0; text-transform: none;
    cursor: pointer;
  }
  .radio-group input[type="radio"] {
    width: 16px; height: 16px; padding: 0;
    accent-color: var(--teal-dark);
    cursor: pointer;
  }

  .btn-submit {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--teal-dark); color: var(--white);
    padding: 16px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background .2s;
    margin-top: 8px;
    min-width: 200px;
    float: right;
    gap: 12px;
  }
  .btn-submit:hover { background: #155f54; }
  .btn-submit svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }

 /* ─── MAP ─── */
.map-section {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-top: 1px solid #d9d9d9;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.05);
}

/* PIN OVERLAY */
.map-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.map-pin-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-dark);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.map-pin-dot svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.map-pin-tail {
  width: 3px;
  height: 20px;
  background: var(--teal-dark);
}

.map-label {
  margin-top: 14px;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

 
    /* ── FOOTER ── */
    .footer {
      background: #f5f6f7;
      padding-top: 70px;
      border-top: 1px solid rgba(0,0,0,0.04);
    }

    .footer-container {
      width: 100%; max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px 70px;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 70px;
    }

    .footer-logo { width: 56px; height: auto; margin-bottom: 32px; }

    .footer-brand p {
      max-width: 240px;
      color: rgb(82,97,96);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 34px;
    }

    .footer-socials { display: flex; gap: 16px; }
    .footer-socials a {
      width: 40px; height: 40px;
      border: 1px solid #dfe3e6;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      background: white;
      transition: 0.2s ease;
    }
    .footer-socials a:hover { border-color: var(--verde); }

    .footer-column h4 {
      margin-bottom: 28px;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal-dark);
    }

    .footer-column a, .footer-column p {
      display: block;
      margin-bottom: 18px;
      color: rgb(82,97,96);
      font-family: var(--font-body);
      font-size: 15px;
      text-decoration: none;
    }
    .footer-column a:hover { color: var(--verde); }

    .newsletter-form { margin-top: 22px; }
    .newsletter-form input {
      width: 100%; height: 54px;
      box-sizing: border-box;
      border: 1px solid #d9dfe3;
      border-bottom: none;
      border-radius: 10px 10px 0 0;
      padding: 0 16px; outline: none;
      background: white;
      font-family: var(--font-ui); font-size: 15px; color: rgb(82,97,96);
    }
    .newsletter-form input::placeholder { color: rgb(82,97,96); }
    .newsletter-form button {
      width: 100%; height: 50px;
      border: none; border-radius: 0 0 10px 10px;
      background: var(--teal-dark); color: white;
      font-family: var(--font-ui); font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      cursor: pointer; transition: background .2s;
    }
    .newsletter-form button:hover { background: #00574d; }

    .footer-bottom {
      border-top: 1px solid #dde3e5;
      padding: 26px 32px;
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1280px; margin: 0 auto;
    }
    .footer-bottom p, .footer-bottom a {
      color: #8c979b;
      font-family: var(--font-body); font-size: 14px; text-decoration: none;
    }
    .footer-bottom a:hover { color: var(--verde); }

    .footer-bottom-links {
      display: flex; align-items: center; gap: 24px;
    }

    .livro-reclamacoes-link {
      display: flex; align-items: center; gap: 8px;
      color: #8c979b;
      font-family: var(--font-body); font-size: 14px; text-decoration: none;
      transition: color 0.2s;
    }
    .livro-reclamacoes-link:hover { color: var(--verde) !important; }

    .livro-reclamacoes-link svg { flex-shrink: 0; }

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

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #1a1c1c;
  border-radius: 2px;
  transition: all .25s;
}

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 500;
  display: flex;
  flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
  z-index: 490;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 72px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f4f4f4;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #1a1c1c;
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}

.mobile-link {
  display: block;
  padding: 17px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #1a1c1c;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: color .2s, padding-left .2s;
}
.mobile-link:hover, .mobile-link.active {
  color: #006b5f;
  padding-left: 32px;
}

.mobile-bottom {
  padding: 20px 22px 28px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  padding: 15px;
  background: #006b5f;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s;
}
.mobile-cta-btn:hover { background: #00574d; }

.mobile-contact {
  text-align: center;
  font-size: 13px;
  color: #6b7a84;
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 900px) {
  nav { height: 72px; padding: 0 20px; }
  nav .nav-links, nav .search-box { display: none !important; }
  .nav-hamburger { display: flex !important; }

  .hero {
    grid-template-columns: 1fr;
    padding: 96px 20px 56px;
    gap: 32px;
    text-align: center;
  }
  .hero-text h1 { font-size: 48px; }
  .hero-text p { max-width: 100%; margin: 0 auto; }
  .hero-visual { justify-content: center; }
  .hero-img { max-width: 420px; margin: 0 auto; }
  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    white-space: nowrap;
  }

  .contact-section { padding: 72px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-left { display: flex; flex-direction: column; gap: 20px; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-form-wrap h2 { font-size: 20px; margin-bottom: 24px; }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .map-section { height: 400px; }

  .footer { padding-top: 40px; }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    padding: 0 20px 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 14px; max-width: 100%; margin-bottom: 18px; }
  .footer-logo { width: 44px; margin-bottom: 18px; }
  .footer-column h4 { font-size: 11px; margin-bottom: 12px; }
  .footer-column a, .footer-column p { font-size: 13px; margin-bottom: 10px; }
  .newsletter-form input { height: 46px; font-size: 14px; }
  .newsletter-form button { height: 42px; font-size: 11px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 20px;
  }
  .footer-bottom p, .footer-bottom a { font-size: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 480px) {
  nav { height: 68px; padding: 0 18px; }
  .nav-logo img { height: 36px; }

  .hero { padding: 88px 18px 48px; }
  .hero-text h1 { font-size: 34px !important; letter-spacing: -0.01em; }
  .hero-text p { font-size: 14px; }
  .hero-badge { font-size: 13px; padding: 13px 18px; }

  .contact-section { padding: 56px 18px; }
  .contact-form-wrap { padding: 22px 16px; }
  .contact-form-wrap h2 { font-size: 17px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .btn-submit { width: 100%; float: none; justify-content: center; }

  .map-section { height: 300px; }
  .map-label { font-size: 10px; padding: 8px 14px; }
  .map-pin-dot { width: 42px; height: 42px; }

  .footer-container { grid-template-columns: 1fr; }
  .hours-card { padding: 18px; }
  .contact-info-item { padding: 16px; }
}

            @keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:.8} }
            @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
            .p1{animation:pulse 3s ease-in-out infinite}
            .p2{animation:pulse 3s ease-in-out 1s infinite}
            .p3{animation:pulse 3s ease-in-out 2s infinite}
            .fl{animation:float 5s ease-in-out infinite}

