/* ============================================================
   LANDING PAGE ACADEMIA — CSS PRINCIPAL
   Edite cores, fontes e espaçamentos aqui.
   ============================================================ */

:root {
  --bg: #070707;
  --bg-soft: #101010;
  --card: rgba(255,255,255,.07);
  --card-strong: rgba(255,255,255,.11);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: rgba(255,255,255,.14);
  --brand: #44c3dd;
  --brand-2: #075e80;
  --ok: #78ecff;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 26px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(68,195,221,.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(7,94,128,.13), transparent 30%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.top-offer {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, #44c3dd, #1596be, #075e80);
  color: #111;
  text-align: center;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 10px 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7,7,7,.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -.04em;
  font-size: 23px;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #44c3dd;
  box-shadow: 0 0 38px rgba(68,195,221,.42);
  border: 2px solid rgba(255,255,255,.18);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #44c3dd, #075e80);
  box-shadow: 0 0 38px rgba(68,195,221,.42);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 1000;
  transform: rotate(-8deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  transition: .25s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: var(--brand);
  transition: .25s ease;
}

.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #44c3dd, #075e80);
  color: #fff;
  box-shadow: 0 18px 46px rgba(68,195,221,.32);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 26px 70px rgba(68,195,221,.46);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.05);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .2s ease;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  padding: 74px 0 54px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.76) 44%, rgba(7,7,7,.30) 100%),
    url("../img/hero-academia.jpg") center/cover no-repeat;
  filter: saturate(1.1) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(transparent, var(--bg));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 18px var(--ok);
}

h1 {
  font-size: clamp(44px, 7vw, 94px);
  line-height: .88;
  letter-spacing: -.075em;
  max-width: 820px;
  font-weight: 1000;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #fff, #d9f9ff 30%, var(--brand) 68%, var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 650px;
  color: #dedede;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  margin: 24px 0 30px;
  font-weight: 550;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 720px;
}

.badge {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 15px;
  backdrop-filter: blur(12px);
}

.badge strong {
  display: block;
  color: #fff;
  font-size: 19px;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}

.badge span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.lead-card {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  animation: floatCard 5.2s ease-in-out infinite;
}

.lead-card .mini-title {
  color: var(--brand-2);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 10px;
}

.lead-card h2 {
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -.045em;
  margin-bottom: 16px;
}

.lead-card p,
.section-desc {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.time-box {
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 8px;
  text-align: center;
}

.time-box b {
  display: block;
  font-size: 29px;
  line-height: 1;
}

.time-box small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .09em;
}

.lead-form {
  display: grid;
  gap: 11px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.36);
  color: #fff;
  border-radius: 15px;
  padding: 15px 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(68,195,221,.8);
  box-shadow: 0 0 0 4px rgba(68,195,221,.15);
}

.small-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 10px;
}

section {
  padding: 86px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-label {
  color: var(--brand-2);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .95;
  letter-spacing: -.06em;
  max-width: 760px;
  text-transform: uppercase;
}

.section-desc {
  max-width: 430px;
}

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }

.stat b {
  display: block;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.06em;
  line-height: .9;
}

.stat span {
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.feature:hover {
  transform: translateY(-8px);
  background: var(--card-strong);
  border-color: rgba(68,195,221,.35);
}

.feature::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(68,195,221,.24), transparent 70%);
  right: -50px;
  bottom: -70px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(68,195,221,.28), rgba(7,94,128,.26));
  border: 1px solid rgba(255,255,255,.14);
  font-size: 22px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 22px;
  letter-spacing: -.035em;
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
  line-height: 1.58;
  font-weight: 560;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.photo-stack {
  position: relative;
  min-height: 640px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  background: #151515;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.photo-card.one {
  width: 68%;
  height: 430px;
  left: 0;
  top: 24px;
}

.photo-card.two {
  width: 54%;
  height: 340px;
  right: 0;
  top: 196px;
}

.photo-card.three {
  width: 48%;
  height: 250px;
  left: 12%;
  bottom: 0;
}

.program-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.program-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}

.check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(84,255,159,.14);
  color: var(--ok);
  font-weight: 950;
}

.program-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: -.025em;
}

.program-item p {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 560;
}

.mt-24 { margin-top: 24px; }

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery figure {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151515;
}

.gallery figure:first-child { grid-row: span 2; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery figure:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.08);
}

.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

.pricing {
  background:
    linear-gradient(180deg, rgba(68,195,221,.075), transparent 22%),
    rgba(255,255,255,.02);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  background: rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: transform .25s ease, border-color .25s ease;
}

.plan:hover {
  transform: translateY(-9px);
  border-color: rgba(68,195,221,.42);
}

.plan.popular {
  background: linear-gradient(180deg, rgba(68,195,221,.18), rgba(255,255,255,.075));
  border-color: rgba(68,195,221,.55);
  box-shadow: 0 28px 90px rgba(68,195,221,.18);
  transform: scale(1.035);
}

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #44c3dd, #075e80);
  color: #111;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plan h3 {
  font-size: 26px;
  letter-spacing: -.045em;
  margin-bottom: 8px;
}

.plan .for {
  color: var(--muted);
  font-weight: 650;
  min-height: 46px;
  line-height: 1.45;
}

.price {
  margin: 24px 0 18px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.price strong {
  font-size: 54px;
  line-height: .85;
  letter-spacing: -.07em;
}

.price span {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 6px;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 14px 0 24px;
  color: #e9e9e9;
  font-weight: 650;
}

.plan li::before {
  content: "✓";
  color: var(--ok);
  margin-right: 9px;
  font-weight: 1000;
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 26px;
  padding: 22px;
}

.stars {
  color: var(--brand-2);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 17px;
}

.testimonial p {
  color: #e7e7e7;
  line-height: 1.6;
  font-weight: 560;
  margin-bottom: 18px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.18);
}

.person b { display: block; }

.person span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 0;
  text-align: left;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
}

.faq-q span:last-child {
  color: var(--brand-2);
  font-size: 22px;
  line-height: 1;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 560;
  padding: 0 20px;
}

.faq-item.active .faq-a {
  max-height: 180px;
  padding-bottom: 20px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  isolation: isolate;
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,7,7,.94), rgba(7,7,7,.62)),
    url("../img/cta-final.jpg") center/cover no-repeat;
}

.final-box {
  max-width: 840px;
}

.final-box h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-box p {
  color: #ddd;
  font-size: 20px;
  line-height: 1.45;
  max-width: 670px;
  font-weight: 600;
  margin-bottom: 28px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  background: #060606;
  font-weight: 650;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #44c3dd;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 29px;
  box-shadow: 0 18px 46px rgba(68,195,221,.38);
  animation: pulse 1.6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: marquee 18s linear infinite;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
}

.marquee-track span { color: var(--brand); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(.2deg); }
  50% { transform: translateY(-13px) rotate(-.5deg); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 46px rgba(68,195,221,.38);
  }
  50% {
    transform: scale(1.075);
    box-shadow: 0 26px 70px rgba(68,195,221,.56);
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .nav-links,
  .nav .desktop-cta {
    display: none;
  }

  .hamburger { display: block; }

  .mobile-menu {
    display: grid;
    gap: 14px;
    position: fixed;
    top: 116px;
    left: 20px;
    right: 20px;
    z-index: 19;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10,10,10,.94);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .22s ease;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    color: var(--text);
    font-weight: 850;
  }

  .hero-grid,
  .split,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 54px; }

  .lead-card { max-width: 520px; }

  .photo-stack { min-height: 560px; }

  .features-grid,
  .plans,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .plan.popular { transform: none; }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-last-child(-n+2) { border-bottom: 0; }

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

  .gallery figure:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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

  .top-offer {
    font-size: 12px;
    line-height: 1.35;
  }

  .nav { min-height: 68px; }

  .logo { font-size: 19px; }

  .logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #44c3dd;
  box-shadow: 0 0 38px rgba(68,195,221,.42);
  border: 2px solid rgba(255,255,255,.18);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #44c3dd, #075e80);
  box-shadow: 0 0 38px rgba(68,195,221,.42);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 1000;
  transform: rotate(-8deg);
}

  .mobile-menu {
    top: 104px;
    left: 13px;
    right: 13px;
  }

  .hero-badges { grid-template-columns: 1fr; }

  .hero-ctas .btn { width: 100%; }

  .section-head { display: block; }

  .section-desc { margin-top: 16px; }

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

  .gallery figure:first-child {
    grid-column: auto;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .photo-card {
    position: relative;
    inset: auto !important;
    width: 100% !important;
    height: 280px !important;
  }

  .countdown { grid-template-columns: repeat(3, 1fr); }

  .price strong { font-size: 46px; }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
