/* ============================================================
   ÓTICA STHEFANY — MAIN STYLESHEET
   Brand: #003c3b (verde) | #dad3ae (bege/dourado)
   Font: Montserrat
============================================================ */

/* ---- Variables ---- */
:root {
  --primary:        #003c3b;
  --primary-dark:   #002b2a;
  --primary-light:  #005554;
  --secondary:      #dad3ae;
  --secondary-dark: #c4bc93;
  --white:          #ffffff;
  --light:          #f7f7f3;
  --gray:           #e8e8e4;
  --text:           #1a1a1a;
  --text-muted:     #6b6b6b;
  --success:        #25D366;
  --shadow-sm:      0 2px 12px rgba(0,60,59,.08);
  --shadow-md:      0 8px 32px rgba(0,60,59,.14);
  --shadow-lg:      0 20px 60px rgba(0,60,59,.18);
  --radius:         14px;
  --radius-lg:      24px;
  --radius-pill:    999px;
  --nav-h:          72px;
  --transition:     all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}
#main-content { width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-weight: 500; line-height: 1.2; word-break: break-word; overflow-wrap: break-word; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { line-height: 1.75; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---- Section spacing ---- */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
}

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  background: rgba(218,211,174,.15);
  border: 1px solid var(--secondary);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ---- Glassmorphism ---- */
.glass {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.glass-light {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow-sm);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,211,174,.4);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-green:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: var(--success);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1eb85a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
}
.admin-bar #navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #navbar { top: 46px; }
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: rgba(0,60,59,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-otica {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: .85rem;
  letter-spacing: .22em;
  color: var(--secondary);
}
.nav-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
  background: rgba(218,211,174,.1);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--primary-dark);
  border: 1px solid rgba(218,211,174,.2);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .85rem;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-wa {
  background: var(--success);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
}
.nav-wa:hover { background: #1eb85a !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid rgba(218,211,174,.1);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { font-size: 1rem; padding: 12px 8px; width: 100%; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: rgba(0,0,0,.2);
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-item.open .nav-dropdown { display: block; }
  .hamburger { display: flex; }
  .nav-wa span { display: none; }
}

/* ============================================================
   HERO CAROUSEL
============================================================ */
.hero-swiper { width: 100%; height: 100vh; min-height: 560px; overflow: hidden; }

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  padding-top: var(--nav-h);
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  /* decorative pattern */
  background-image:
    radial-gradient(circle at 20% 80%, rgba(218,211,174,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(218,211,174,.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,44,43,.6) 100%);
}
.hero-slide-bg.has-image::after {
  background: linear-gradient(135deg, rgba(0,44,43,.75) 0%, rgba(0,44,43,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-bottom: 18px;
}
.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Swiper nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--white);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--secondary); }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--primary-dark);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-right: 1px solid rgba(218,211,174,.12);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.trust-item-text { color: var(--white); }
.trust-item-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
}
.trust-item-text span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 300;
}
@media (max-width: 767px) {
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(218,211,174,.1); padding: 16px 20px; }
  .trust-item:last-child { border-bottom: none; }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { background: var(--white); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: rgba(0,60,59,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p  { color: var(--text-muted); font-size: .9rem; }

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: default;
}
.service-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.7; }

/* ============================================================
   BRANDS MARQUEE
============================================================ */
.brands-section { background: var(--white); overflow: hidden; padding: 60px 0; }
.brands-track-wrap {
  position: relative;
  overflow: hidden;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.brands-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.brands-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.brands-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-right: 1px solid var(--gray);
  white-space: nowrap;
}
.brand-item span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.brand-item:hover span { color: var(--primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-section { background: var(--primary); }
.gallery-section .section-header .tag { color: var(--secondary); border-color: rgba(218,211,174,.4); }
.gallery-section .section-header h2 { color: var(--white); }
.gallery-section .section-header p   { color: rgba(255,255,255,.65); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.gallery-item {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,255,255,.3);
  gap: 10px;
}
.gallery-placeholder i { font-size: 2rem; }
.gallery-placeholder span { font-size: .78rem; text-align: center; padding: 0 10px; }
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n) { grid-column: span 1; height: 150px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* ============================================================
   REVIEWS (TrustIndex)
============================================================ */
.reviews-section { background: var(--light); }
.reviews-header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.reviews-score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.reviews-stars { color: #FBBC04; font-size: 1.4rem; display: flex; gap: 4px; }
.reviews-count { color: var(--text-muted); font-size: .9rem; }
.trustindex-placeholder {
  background: var(--white);
  border: 2px dashed var(--gray);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
}
.trustindex-placeholder code {
  background: var(--light);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .85rem;
  color: var(--primary);
}

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: var(--light); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fdfdf9 100%);
  border: 1px solid rgba(0, 60, 59, .12);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq-item:hover {
  border-color: rgba(0, 60, 59, .25);
  box-shadow: 0 12px 30px rgba(0, 60, 59, .1);
  transform: translateY(-1px);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(0, 60, 59, .13);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text);
  user-select: none;
  outline: none;
}
.faq-question:focus-visible {
  outline: 2px solid rgba(0, 60, 59, .45);
  outline-offset: -4px;
  border-radius: 18px;
}
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 60, 59, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  border: 1px solid rgba(0, 60, 59, .12);
  transition: background .25s ease, transform .3s ease, color .25s ease, border-color .25s ease;
  font-size: .8rem;
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, opacity .25s ease;
  opacity: 0;
}
.faq-answer-inner {
  padding: 2px 26px 24px;
  color: #4f5758;
  font-size: .94rem;
  line-height: 1.75;
  border-top: 1px solid rgba(0, 60, 59, .08);
  margin: 0 16px;
  padding-top: 16px;
}
.faq-item.open .faq-answer {
  max-height: 420px;
  opacity: 1;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(218,211,174,.06);
  top: -200px; right: -200px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(218,211,174,.04);
  bottom: -150px; left: -100px;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner .tag {
  display: inline-block;
  background: rgba(218,211,174,.15);
  color: var(--secondary);
  border: 1px solid rgba(218,211,174,.3);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   INSTAGRAM SECTION
============================================================ */
.instagram-section { background: var(--light); }
.instagram-section .section-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
}
.instagram-feed-placeholder {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--gray);
  color: var(--text-muted);
}
.instagram-feed-placeholder i { font-size: 3rem; color: var(--gray); margin-bottom: 16px; }

/* ============================================================
   POPUP — LEAD CAPTURE
============================================================ */
#lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,30,29,.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
#lead-popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.popup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: popupIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popupIn {
  from { transform: scale(.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.popup-header {
  background: var(--primary);
  padding: 32px 28px 24px;
  text-align: center;
  position: relative;
}
.popup-logo { height: 40px; margin: 0 auto 16px; }
.popup-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.popup-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.popup-header p  { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 300; }
.popup-body { padding: 28px; }
.popup-body .form-group { margin-bottom: 14px; }
.popup-body label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.popup-body input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  color: var(--text);
  transition: border-color .2s;
  background: var(--white);
}
.popup-body input:focus { outline: none; border-color: var(--primary); }
.popup-body .btn { width: 100%; justify-content: center; margin-top: 6px; }
.popup-privacy {
  text-align: center;
  font-size: .74rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.popup-privacy i { color: var(--success); }
.popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,.25); }
.popup-success {
  text-align: center;
  padding: 40px 28px;
  display: none;
}
.popup-success i { font-size: 3.5rem; color: var(--success); margin-bottom: 16px; }
.popup-success h3 { margin-bottom: 8px; }
.popup-success p  { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }
.coupon-box {
  background: var(--light);
  border: 2px dashed var(--secondary-dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.coupon-box span { font-size: .75rem; color: var(--text-muted); }
.coupon-code {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .1em;
}
#lead-form-error {
  color: #d32f2f;
  font-size: .82rem;
  margin-top: 8px;
  display: none;
}

/* ============================================================
   COOKIE CONSENT
============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary-dark);
  border-top: 1px solid rgba(218,211,174,.15);
  z-index: 9998;
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { color: rgba(255,255,255,.8); font-size: .82rem; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--secondary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-accept { background: var(--secondary); color: var(--primary); }
.cookie-accept:hover { background: var(--secondary-dark); }
.cookie-decline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.cookie-decline:hover { background: rgba(255,255,255,.08); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-tooltip {
  background: var(--white);
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
#whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 58px;
  height: 58px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  animation: waPulse 2.5s infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.3); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,0); }
}
@media (max-width: 767px) {
  #whatsapp-float { bottom: 80px; right: 16px; }
  .wa-btn { width: 52px; height: 52px; font-size: 1.5rem; }
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #0d1a1a;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; }
.footer-about p { font-size: .87rem; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--secondary); }
.footer-col h4 {
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul a:hover { color: var(--secondary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item i { color: var(--secondary); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-hours { margin-top: 16px; }
.footer-hours p { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer-hours span { font-size: .87rem; color: rgba(255,255,255,.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--secondary); }
.footer-bottom-links { display: flex; gap: 20px; }
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE HERO (Inner pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(218,211,174,.05);
  top: -200px; right: -100px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb i { font-size: .65rem; }

/* Post hero — alinhamento à esquerda para artigos */
.post-hero { text-align: left; padding-bottom: 60px; }
.post-hero .breadcrumb { justify-content: flex-start; }
.post-hero h1 { max-width: 780px; margin: 16px 0 0; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--secondary); margin-bottom: 28px; font-size: 1.1rem; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(218,211,174,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.contact-detail-text label { display: block; font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.contact-detail-text a,
.contact-detail-text p { color: rgba(255,255,255,.9); font-size: .95rem; }
.contact-detail-text a:hover { color: var(--secondary); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
}
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  color: var(--text);
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card { padding: 28px; }
  .contact-form-wrap { padding: 28px; }
}

/* ============================================================
   LOCATION PAGE
============================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.location-info { margin-top: 48px; }
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--gray);
}
.location-card i { font-size: 2rem; color: var(--primary); margin-bottom: 14px; }
.location-card h4 { margin-bottom: 8px; font-size: 1rem; }
.location-card p  { color: var(--text-muted); font-size: .87rem; line-height: 1.7; }

/* ============================================================
   ARMAÇÕES (Product Pages)
============================================================ */
.armacoes-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.filter-btn:hover,
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-thumb {
  aspect-ratio: 4/3;
  background: var(--light);
  overflow: hidden;
  position: relative;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-thumb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray);
}
.product-thumb-placeholder i { font-size: 3rem; margin-bottom: 8px; }
.product-thumb-placeholder span { font-size: .78rem; }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--secondary);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.product-info { padding: 18px; }
.product-brand { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.product-name { font-size: .95rem; font-weight: 600; margin-bottom: 14px; }
.product-card .btn { width: 100%; justify-content: center; font-size: .82rem; padding: 11px 16px; }
.armacoes-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: var(--light);
  border-radius: var(--radius-lg);
}
.armacoes-cta p { color: var(--text-muted); margin-bottom: 20px; }

/* ============================================================
   BLOG
============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--primary);
  overflow: hidden;
  position: relative;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}
.blog-thumb-placeholder i { font-size: 3rem; color: rgba(218,211,174,.3); }
.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--secondary);
  color: var(--primary);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 12px; }
.blog-meta span { font-size: .76rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.blog-body h2 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body h2 a:hover { color: var(--primary); }
.blog-body p   { color: var(--text-muted); font-size: .88rem; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  transition: gap .2s;
}
.blog-read-more:hover { gap: 10px; }

/* Single post */
body.single .section {
  background: var(--white) !important;
}
.single-post { padding: 0; }
.post-header { max-width: 760px; margin: 0 auto 36px; }
.post-meta { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; align-items: center; }
.post-meta span { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

.post-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 52px;
  box-shadow: var(--shadow-md);
}
.post-featured img { width: 100%; max-height: 480px; object-fit: cover; }

/* Post content typography */
.post-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}
.post-content > p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #2a2a2a;
  font-weight: 400;
}
.post-content h2 {
  margin: 52px 0 20px;
  color: var(--primary);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 600;
  padding-bottom: 14px;
  position: relative;
}
.post-content h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--secondary), transparent);
}
.post-content h3 {
  margin: 36px 0 14px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--primary-light);
}
.post-content p { margin-bottom: 22px; }

/* HR — ornamental divider */
.post-content hr {
  border: none;
  height: 0;
  margin: 52px auto;
  text-align: center;
  overflow: visible;
}
.post-content hr::after {
  content: '— ✦ —';
  display: inline-block;
  color: var(--secondary-dark);
  font-size: .85rem;
  letter-spacing: .15em;
  background: var(--white);
  padding: 0 8px;
}

/* Lists */
.post-content ul { list-style: none; padding-left: 0; margin-bottom: 24px; }
.post-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  line-height: 1.75;
}
.post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--primary);
}
.post-content ol { padding-left: 24px; margin-bottom: 24px; }
.post-content ol li { margin-bottom: 10px; line-height: 1.75; }

/* Tip paragraphs — parágrafos que começam com <strong> */
.post-content p:has(> strong:first-child) {
  background: var(--light);
  border-left: 3px solid var(--secondary-dark);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 14px;
}
.post-content p:has(> strong:first-child) > strong:first-child {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.post-content strong { font-weight: 600; }

/* Inline links */
.post-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.post-content a:hover { color: var(--primary-light); }

/* Blockquote */
.post-content blockquote {
  border-left: 4px solid var(--secondary);
  padding: 20px 28px;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Post CTA */
.post-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.post-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(218,211,174,.12);
  pointer-events: none;
}
.post-cta::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(218,211,174,.08);
  pointer-events: none;
}
.post-cta h3 { color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.post-cta p  { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: .95rem; position: relative; z-index: 1; }
.post-cta .btn { position: relative; z-index: 1; }

/* Blog nav */
.blog-nav {
  max-width: 760px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.blog-nav-link {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray);
  font-size: .85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.blog-nav-link:hover { border-color: var(--primary); color: var(--primary); background: var(--light); }
.blog-nav-link.next { text-align: right; }
.blog-nav-link strong { display: block; color: var(--text); margin-top: 4px; font-size: .9rem; }

/* Related posts */
.related-posts { margin-top: 60px; }
.related-posts > h3 { margin-bottom: 28px; }
.related-posts .blog-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.related-posts .blog-body h2 { font-size: .95rem; }
.related-posts .blog-read-more { font-size: .8rem; }

/* Reading progress bar */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ============================================================
   404 PAGE
============================================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.page-404 .big-number {
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  color: var(--primary);
  opacity: .08;
  line-height: 1;
  margin-bottom: -20px;
}
.page-404 h2 { margin-bottom: 14px; }
.page-404 p  { color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   UTILITIES & ANIMATIONS
============================================================ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.d-none { display: none; }
.fw-medium { font-weight: 500; }
.fw-thin   { font-weight: 300; }
.color-primary   { color: var(--primary); }
.color-secondary { color: var(--secondary); }

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   MOBILE — 767px
============================================================ */
@media (max-width: 767px) {
  /* Garante que nenhum filho cause overflow horizontal */
  body, #main-content, .section, section { max-width: 100vw; }

  /* Container: sem vazamento lateral */
  .container { padding: 0 16px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .section-header p  { font-size: .9rem; }

  /* Hero — setas invisíveis, botões empilham */
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev { display: none; }
  .hero-content { padding: 16px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Como funciona — step cards */
  .how-steps { gap: 36px; }
  .step-card { padding: 28px 20px 24px; }

  /* Serviços */
  .services-grid { gap: 14px; }
  .service-card { padding: 24px 20px; }

  /* FAQ */
  .faq-list { gap: 10px; }
  .faq-item { border-radius: 16px; }
  .faq-question {
    padding: 18px 18px;
    font-size: .95rem;
    gap: 12px;
  }
  .faq-icon {
    width: 34px;
    height: 34px;
  }
  .faq-answer-inner {
    margin: 0 12px;
    padding: 2px 18px 18px;
    font-size: .9rem;
  }

  /* CTA section — botões empilham */
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Galeria */
  .gallery-item { grid-column: span 1 !important; height: 140px; }
  .gallery-item:first-child { grid-column: span 2 !important; }

  /* Page hero (páginas internas) */
  .page-hero { padding: 100px 0 48px; }
  .page-hero p { font-size: .95rem; }

  /* Mapa */
  .map-container { height: 250px; }

  /* Blog post — nav anterior/próximo em coluna única */
  .blog-nav { grid-template-columns: 1fr; }
  .blog-nav-link.next { text-align: left; }

  /* Single post card */
  .single-post { padding: 24px 20px; }

  /* Post content mobile */
  .post-content { font-size: 1rem; }
  .post-content > p:first-of-type { font-size: 1.05rem; }
  .post-content h2 { margin-top: 40px; }
  .post-content hr { margin: 36px auto; }
  .post-content p:has(> strong:first-child) { padding: 14px 16px; }

  /* Post CTA */
  .post-cta { padding: 32px 20px; }
  .post-cta::before, .post-cta::after { display: none; }

  /* Popup */
  .popup-header { padding: 24px 20px 18px; }
  .popup-body { padding: 20px; }

  /* Armações */
  .armacoes-cta { padding: 24px 16px; }
  .filter-btn { padding: 8px 14px; font-size: .8rem; }

  /* Localização */
  .location-card { padding: 20px 14px; }

  /* Reviews */
  .reviews-score { font-size: 2.4rem; }

  /* Contact */
  .contact-info-card { padding: 24px 20px; }
  .contact-form-wrap  { padding: 24px 20px; }
}

/* ============================================================
   MOBILE — 480px (telas pequenas)
============================================================ */
@media (max-width: 480px) {
  /* Botões grandes ficam levemente menores */
  .btn-lg { padding: 14px 24px; font-size: .93rem; }

  /* Hero */
  .hero-swiper { min-height: 520px; }
  .hero-tag { font-size: .68rem; padding: 5px 14px; }

  /* Trust bar compacto */
  .trust-item { padding: 13px 16px; gap: 10px; }
  .trust-item i { font-size: 1.3rem; }
  .trust-item-text strong { font-size: .85rem; }
  .trust-item-text span { font-size: .75rem; }

  /* Nav: oculta o texto do logo para não comprimir o hamburger */
  .nav-logo-text { display: none; }

  /* Popup em tela pequena */
  .popup-badge { font-size: 1.8rem; }
  .popup-header h3 { font-size: 1.05rem; }

  /* Footer */
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .footer-bottom { gap: 8px; }
  .footer-logo { height: 36px; }

  /* Cookie */
  .cookie-actions { width: 100%; justify-content: center; }

  /* Blog grid (forçado 1 coluna abaixo de 480) */
  .blog-grid { grid-template-columns: 1fr; }

  /* Produtos: 1 coluna */
  .products-grid { grid-template-columns: 1fr; }
}

