/* ============ RESET & TOKENS ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-500.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-600.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-700.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-800.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-700.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-800.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-700italic.ttf") format("truetype");
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-600italic.ttf") format("truetype");
  font-weight: 600; font-style: italic; font-display: swap;
}

:root {
  --navy: #101b30;
  --navy-2: #182541;
  --red: #d92b2b;
  --red-dark: #b81f1f;
  --gold: #c99a3d;
  --gold-dark: #b3852c;
  --bg: #ffffff;
  --bg-soft: #f6f6f9;
  --ink: #16202f;
  --ink-soft: #5c6579;
  --border: #e7e8ee;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-card: 0 12px 30px -14px rgba(16, 27, 48, 0.18);
  --shadow-card-hover: 0 18px 40px -14px rgba(16, 27, 48, 0.26);
  --container: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 22px; height: 22px; }
.icon--sm { width: 16px; height: 16px; }

/* ============ TYPE HELPERS ============ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--onDark { color: var(--red); }

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.18;
  text-wrap: balance;
  color: var(--ink);
}
.h2 em, .hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}
.h2--onDark { color: #fff; }

.lead {
  margin-top: 18px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { display: block; }

.section { padding: 88px 0; }
.section--tight { padding: 0 0 88px; }
.section--muted { background: var(--bg-soft); }

/* ============ REVEAL ============
   Visible (opacity:1) by default — safe if JS never runs. The .in-view
   class (added by IntersectionObserver as each section scrolls into
   view) is a pure enhancement that replays the fade-up animation. */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 1; }
.reveal.in-view { animation: fade-up .8s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  .reveal.in-view { animation: none; }
}

/* Word-by-word heading reveal. Words are visible (opacity:1) by default —
   the .words-in trigger class (added by IntersectionObserver) is a pure
   enhancement: if it never fires, headings stay fully visible, just
   without the staggered pop-in. */
.word-pop { display: inline-block; opacity: 1; }
@keyframes word-pop-in {
  from { opacity: 0; transform: translateY(.3em); }
  to { opacity: 1; transform: translateY(0); }
}
.words-trigger.words-in .word-pop {
  animation: word-pop-in .5s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--word-i, 0) * 45ms);
}
@media (prefers-reduced-motion: reduce) {
  .words-trigger.words-in .word-pop { animation: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(201, 154, 61, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(201, 154, 61, 0.65); }
.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1rem; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
}
.navbar__brand { display: flex; align-items: center; gap: 12px; }
.navbar__crest {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.navbar__brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
}
.navbar__brand-text em { font-style: italic; color: var(--red); }

.navbar__nav { display: flex; gap: 32px; }
.navbar__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .15s ease;
}
.navbar__link:hover { color: var(--red); }

.navbar__burger {
  display: none;
  color: var(--ink);
  padding: 6px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(217, 43, 43, 0.06), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201, 154, 61, 0.08), transparent 45%),
    var(--bg);
  overflow: hidden;
}
.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.hero__fig {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.55);
  animation: hero-float 6s ease-in-out infinite;
  box-shadow: 0 10px 22px -6px rgba(16,27,48,.35);
}
.hero__fig .icon { width: 30px; height: 30px; }
.hero__fig--spider { background: radial-gradient(circle at 35% 30%, #c8321f, #7a1c10); }
.hero__fig--iron { background: radial-gradient(circle at 35% 30%, #b3271c, #6e150e); }
.hero__fig--cap { background: radial-gradient(circle at 35% 30%, #2f4fb0, #1c2f70); }
.hero__fig--hulk { background: radial-gradient(circle at 35% 30%, #3f8f4f, #1f5a2c); }
.hero__fig--1 { top: 14%; left: 6%; animation-delay: 0s; }
.hero__fig--2 { top: 14%; right: 6%; animation-delay: .8s; }
.hero__fig--3 { bottom: 8%; left: 6%; animation-delay: 1.6s; }
.hero__fig--4 { bottom: 8%; right: 6%; animation-delay: 2.4s; }
@media (max-width: 640px) {
  .hero__fig { width: 44px; height: 44px; }
  .hero__fig .icon { width: 20px; height: 20px; }
  .hero__fig--1, .hero__fig--2 { top: 4%; }
  .hero__fig--3, .hero__fig--4 { bottom: 2%; }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero__content { position: relative; z-index: 2; max-width: 760px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--red);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}
.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.2rem);
  color: var(--ink);
  line-height: 1.05;
}
.hero__subtitle {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}
.hero__content .btn { margin-top: 40px; }

/* ============ QUEM SOMOS ============ */
.sobre__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feature-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-weight: 600;
  transition: transform .18s ease;
}
.feature-pill:hover { transform: translateX(4px); }
.feature-pill__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--red);
  flex-shrink: 0;
}

/* ============ STATS ============ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card--dark { background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: #fff; }
.stat-card--red { background: linear-gradient(160deg, var(--red), var(--red-dark)); color: #fff; }
.stat-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--ink);
}
.stat-card__num--accent { color: var(--red); }
.stat-card--dark .stat-card__num,
.stat-card--red .stat-card__num { color: #fff; }
.stat-card__label { color: var(--ink-soft); font-weight: 500; }
.stat-card--dark .stat-card__label,
.stat-card--red .stat-card__label { color: rgba(255,255,255,.85); }

/* ============ SERVIÇOS ============ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.icon-badge {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--red);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============ CARROSSEL ============ */
.carousel { position: relative; }
.carousel__nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 20px; }
.carousel__btn {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.carousel__btn:hover { transform: translateY(-2px); }
.carousel__btn--active { background: var(--navy); color: #fff; border-color: var(--navy); }

.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel-card {
  position: relative;
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.carousel-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(10, 14, 24, .88));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
}

/* ============ CATÁLOGO / COLEÇÕES ============ */
.collection { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; margin-bottom: 80px; }
.collection:last-child { margin-bottom: 0; }
.collection__info { position: sticky; top: 110px; border-left: 3px solid var(--red); padding-left: 24px; }
.collection__kicker {
  font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.collection__title { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; margin-bottom: 14px; }
.collection__desc { color: var(--ink-soft); margin-bottom: 24px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.photo-grid .carousel-card { flex: none; aspect-ratio: 4 / 3; }

/* ============ DEPOIMENTOS ============ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.stars { display: flex; gap: 3px; color: var(--red); }
.stars .icon { width: 18px; height: 18px; }
.testimonial-card__quote { color: rgba(217, 43, 43, .25); width: 34px; height: 34px; }
.testimonial-card p { font-size: 1.02rem; color: var(--ink); line-height: 1.65; margin-bottom: 20px; }
.testimonial-card footer { border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.testimonial-card footer strong { font-family: var(--font-display); font-size: 1.02rem; }
.testimonial-card footer span { color: var(--ink-soft); font-size: 0.9rem; }

/* ============ REVIEW FORM ============ */
.review-form-card {
  max-width: 640px;
  margin: 56px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.review-form-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.review-form-card > p { color: var(--ink-soft); margin-bottom: 26px; }

.review-form { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.review-form input[type="text"],
.review-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--bg-soft);
  resize: vertical;
}
.review-form input[type="text"]:focus,
.review-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

.review-form__stars-block { display: flex; flex-direction: column; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.star-rating { display: flex; gap: 6px; }
.star {
  font-size: 1.9rem;
  line-height: 1;
  color: var(--border);
  transition: color .15s ease, transform .15s ease;
}
.star:hover { transform: scale(1.15); }
.star.is-active { color: var(--gold); }

.review-form .btn { align-self: center; margin-top: 6px; }
.review-form__hint { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 560px) {
  .review-form-card { padding: 26px 22px; }
  .review-form__row { grid-template-columns: 1fr; }
}

/* ============ CTA FINAL ============ */
.cta-final {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 45%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
}
.cta-final .eyebrow { text-align: center; }
.cta-final__text { max-width: 560px; margin: 22px auto 0; color: rgba(255,255,255,.82); font-size: 1.05rem; }
.cta-final .btn { margin-top: 36px; }

/* ============ CONTATO ============ */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.contact-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.contact-card__label { font-weight: 700; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.contact-card__value { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; line-height: 1.4; }
.contact-card__hint { color: var(--ink-soft); font-size: 0.88rem; margin-top: 6px; }

.map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.map-card iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-card__link {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 14, 24, .92);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__content img { max-width: 90vw; max-height: 85vh; border-radius: 14px; }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  background: #fff; color: var(--ink);
  border-radius: 50%; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .55);
  z-index: 90;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .55); }
  50% { box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .55), 0 0 0 10px rgba(37, 211, 102, .18); }
}

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: #fff; padding: 64px 0 34px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 34px;
}
.footer__brand p { margin-top: 16px; color: rgba(255,255,255,.65); max-width: 34ch; font-size: 0.95rem; }
.footer .navbar__brand-text { color: #fff; }
.footer__nav { display: flex; flex-direction: column; gap: 14px; }
.footer__nav a { color: rgba(255,255,255,.75); font-weight: 500; transition: color .15s ease; }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.footer__social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

.footer__divider { border-top: 1px solid rgba(255,255,255,.14); }
.footer__copy { text-align: center; color: rgba(255,255,255,.55); font-size: 0.85rem; margin-top: 28px; }

.footer__dev { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 20px; }
.footer__dev-label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer__dev-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 16px;
}
.footer__dev-badge img { height: 20px; width: auto; display: block; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .navbar__nav {
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    transform: translateY(-150%);
    transition: transform .25s ease;
  }
  .navbar__nav.is-open { transform: translateY(0); }
  .navbar__burger { display: flex; }

  .sobre__grid { grid-template-columns: 1fr; gap: 36px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .collection { grid-template-columns: 1fr; gap: 28px; }
  .collection__info { position: static; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .cta-final { padding: 48px 26px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
