/* =========================================================
   LEDO SMASH — Site institucional
   Estilo: dark mode rústico/industrial, alto contraste
   ========================================================= */

/* ---------- Reset básico ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

iframe {
  border: 0;
}

/* ---------- Design tokens ---------- */
:root {
  /* Paleta extraída da identidade visual da marca */
  --dark: #0b0d12;
  --dark-soft: #12151d;
  --dark-card: #171b25;
  --dark-card-hi: #1f2430;
  --line: #2a2f3d;

  --cream: #fddca3;
  --gold: #f3ba00;
  --gold-hi: #ffd23d;
  --orange: #ff2700;
  --red: #ff1d00;

  --ink: #fff8ec;
  --muted: #a7acbc;
  --muted-2: #6c7180;

  --font-display: "Anton", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-glow: 0 20px 60px -20px rgba(255, 39, 0, 0.45);
  --shadow-card: 0 16px 40px -18px rgba(0, 0, 0, 0.7);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* grão sutil sobre todo o site, pra dar textura industrial */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-card-hi);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Eyebrow / títulos de seção ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow--center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 18px;
}

.section-title--center {
  text-align: center;
}

.section-title span,
.hero__title span {
  color: var(--orange);
}

.section-subtitle {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #1a0e00;
  box-shadow: 0 12px 30px -10px rgba(255, 39, 0, 0.55);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px -10px rgba(255, 39, 0, 0.7);
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn--small {
  padding: 11px 22px;
  font-size: 0.9rem;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding-block: 20px;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header.is-scrolled {
  padding-block: 12px;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo,
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.header__logo img,
.footer__logo img {
  height: 46px;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  padding-block: 6px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--gold);
}

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

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(255, 39, 0, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 55% at 90% 80%, rgba(243, 186, 0, 0.12), transparent 60%),
    var(--dark);
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.15;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero__title {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  color: var(--ink);
  margin-bottom: 24px;
}

.hero__slogan {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero__slogan-bar {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__slogan strong {
  font-weight: inherit;
  color: var(--orange);
}

.hero__subtitle {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.hero__badges li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.9;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-glow {
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.35) 0%, rgba(255, 39, 0, 0.12) 45%, transparent 72%);
  filter: blur(10px);
  animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

.hero__carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1 / 0.85;
}

.hero__burger {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.65));
  opacity: 0;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  transition: opacity 0.9s var(--ease);
}

.hero__burger.is-active {
  opacity: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.hero__carousel-dots {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.hero__dot:hover {
  background: var(--cream);
}

.hero__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--muted-2);
  border-radius: 20px;
  z-index: 2;
}

.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold);
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* =========================================================
   DIVIDER (faixa industrial)
   ========================================================= */
.divider {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--gold),
    var(--gold) 18px,
    var(--dark) 18px,
    var(--dark) 36px
  );
  opacity: 0.9;
}

/* =========================================================
   SOBRE
   ========================================================= */
.about {
  padding-block: 120px;
  background: var(--dark-soft);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 24px;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about__text strong {
  color: var(--cream);
  font-weight: 700;
}

.about__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.about__insta:hover {
  border-color: var(--gold);
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  background: var(--dark-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.pillar:hover {
  transform: translateX(6px);
  border-color: var(--orange);
  background: var(--dark-card-hi);
}

.pillar__icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 10px;
}

.pillar h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================================
   DESTAQUES / GALERIA
   ========================================================= */
.highlights {
  padding-block: 120px;
  background: var(--dark);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  position: relative;
  background: radial-gradient(ellipse 120% 90% at 50% 0%, var(--dark-card-hi), var(--dark-card) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 30px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
}

.card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 12px;
  padding: 30px;
}

.card--featured .card__img-wrap {
  order: 2;
  aspect-ratio: auto;
}

.card--featured .card__body {
  order: 1;
}

.card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card__img-wrap::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.28), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.card__img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s var(--ease);
}

.card:hover .card__img-wrap img {
  transform: scale(1.06) rotate(-1deg);
}

.card__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #1a0e00;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
}

.card__body h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.card--featured .card__body h3 {
  font-size: 1.9rem;
  color: var(--gold);
}

.card__body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.highlights__cta {
  margin-top: 64px;
  text-align: center;
}

.highlights__cta p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 1.05rem;
}

/* =========================================================
   CONTATO / LOCALIZAÇÃO
   ========================================================= */
.contact {
  position: relative;
  padding-block: 120px;
  background: var(--dark-soft);
  overflow: hidden;
}

.hero__glow--contact {
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255, 39, 0, 0.14), transparent 60%);
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  margin-top: 20px;
}

/* ---- Mockup de celular ---- */
.phone-mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.phone-mockup {
  position: relative;
  width: 260px;
  aspect-ratio: 271 / 601;
  background: linear-gradient(160deg, #23283420, #0000 40%), #0c0e14;
  border: 3px solid #2a2f3d;
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 60px -10px rgba(255, 178, 0, 0.18);
}

.phone-mockup__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 22px;
  background: #0c0e14;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup__btn {
  position: absolute;
  background: #2a2f3d;
}

.phone-mockup__btn--side1 {
  left: -3px;
  top: 100px;
  width: 3px;
  height: 34px;
  border-radius: 2px 0 0 2px;
}

.phone-mockup__btn--side2 {
  left: -3px;
  top: 145px;
  width: 3px;
  height: 54px;
  border-radius: 2px 0 0 2px;
}

.phone-mockup__btn--power {
  right: -3px;
  top: 120px;
  width: 3px;
  height: 60px;
  border-radius: 0 2px 2px 0;
}

.phone-mockup__cta {
  width: 100%;
  max-width: 280px;
  text-align: center;
}

/* ---- Infos de contato ---- */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-block__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--dark-card);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.info-block h3 {
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 6px;
}

.info-block p {
  color: var(--muted);
  font-size: 0.96rem;
}

.info-block a:hover {
  color: var(--gold);
}

.map-embed {
  margin-top: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #07080c;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer__brand p {
  color: var(--muted);
  margin: 16px 0 20px;
  max-width: 260px;
  font-size: 0.92rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.3s var(--ease);
}

.social-icon:hover {
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  transform: translateY(-3px);
}

.footer__col h4 {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a,
.footer__col p {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__closed {
  margin-top: 4px;
  color: var(--muted-2) !important;
  font-size: 0.85rem !important;
}

.footer__col--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 24px;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted-2);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__burger,
  .hero__visual-glow,
  .scroll-hint span {
    animation: none !important;
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
  .card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .card--featured .card__img-wrap,
  .card--featured .card__body {
    order: initial;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 50px;
  }
  .footer__brand {
    grid-column: span 3;
  }
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle {
    margin-inline: auto;
  }
  .hero__cta,
  .hero__badges {
    justify-content: center;
  }
  .hero__visual {
    margin-top: 20px;
  }
  .hero__carousel {
    max-width: 440px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .phone-mockup-wrap {
    order: 2;
  }
  .contact__info {
    order: 1;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--dark-soft);
    border-left: 1px solid var(--line);
    padding: 110px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 400;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: 28px;
  }
  .nav__link {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .header__actions {
    gap: 12px;
  }

  .header__actions .btn--small {
    padding: 9px 16px;
    font-size: 0.8rem;
  }

  .card--featured {
    grid-column: span 1;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 18px;
  }
  .hero {
    padding-top: 100px;
  }
  .hero__title {
    font-size: 2.4rem;
  }
  .about,
  .highlights,
  .contact {
    padding-block: 80px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: span 1;
  }
  .phone-mockup {
    width: 220px;
  }
}

@media (max-width: 400px) {
  .header__logo span {
    display: none;
  }
}

/* Overlay para fechar o menu mobile ao clicar fora */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
