/* ═══════════════════════════════════════════════
   DANILO MOURA — Premium v2
   ═══════════════════════════════════════════════ */
:root {
  --red: #c8102e;
  --red-2: #8b0014;
  --red-glow: rgba(200, 16, 46, 0.3);
  --black: #080808;
  --b2: #0f0f0f;
  --b3: #161616;
  --b4: #1e1e1e;
  --white: #f7f3ee;
  --dim: rgba(247, 243, 238, 0.55);
  --dim2: rgba(247, 243, 238, 0.25);
  --gray: #999;

  --fd: "Unbounded", sans-serif;
  --fb: "DM Sans", sans-serif;
  --fi: "Cormorant Garamond", serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r: 14px;
  --r2: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--fb);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: none;
  background: none;
  font-family: var(--fb);
  cursor: none;
}
p {
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
::selection {
  background: var(--red);
  color: #fff;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* ── Cursor ── */
#cur,
#cur2 {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}
#cur {
  width: 8px;
  height: 8px;
  background: var(--red);
  transition:
    width 0.15s,
    height 0.15s;
}
#cur2 {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(200, 16, 46, 0.45);
  transition: all 0.1s var(--ease);
}
body:has(a:hover, button:hover) #cur {
  width: 14px;
  height: 14px;
  background: var(--white);
}
body:has(a:hover, button:hover) #cur2 {
  width: 46px;
  height: 46px;
  border-color: var(--red);
}
@media (hover: none) {
  #cur,
  #cur2 {
    display: none;
  }
  body,
  a,
  button {
    cursor: auto;
  }
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
#loader.gone {
  opacity: 0;
  visibility: hidden;
}
.ld-logo {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--white);
}
.ld-logo span {
  color: var(--red);
}
.ld-bar {
  width: min(280px, 70vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: 1px;
}
.ld-bar-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  animation: ldFill 1.5s var(--ease) forwards;
}
@keyframes ldFill {
  to {
    width: 100%;
  }
}

/* ── WhatsApp Float ── */
.wf {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.4rem;
  background: #128c7e;
  color: #fff;
  border-radius: 50px;
  font-family: var(--fd);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(18, 140, 126, 0.4);
  transition:
    transform 0.3s var(--spring),
    box-shadow 0.3s;
}
.wf i {
  font-size: 1.2rem;
}
.wf:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 40px rgba(18, 140, 126, 0.55);
}
@media (max-width: 500px) {
  .wf span {
    display: none;
  }
  .wf {
    padding: 0.95rem;
    border-radius: 50%;
  }
}

/* ── NAV ── */
nav.mainnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 1.4rem 0;
  transition:
    background 0.4s,
    padding 0.4s,
    backdrop-filter 0.4s;
}
nav.mainnav.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}
.nav-brand {
  font-family: var(--fd);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  border: 2px solid var(--red);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-brand:hover {
  background: var(--red);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: 1.5rem;
  flex: 1;
}
.nav-links a {
  font-family: var(--fd);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  margin-left: auto;
  padding: 0.65rem 1.6rem;
  border: 1.5px solid var(--red);
  border-radius: 50px;
  font-family: var(--fd);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--red);
}
.nav-ham {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--spring);
  transform-origin: center;
}
.nav-ham.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-ham.open span:nth-child(2) {
  transform: translateY(-8.5px) rotate(-45deg);
}
@media (max-width: 940px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
}

/* ══════════════════════════════════
   SIDEBAR MOBILE — Ultra Premium
══════════════════════════════════ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 90vw);
  height: 100dvh;
  background: var(--b2);
  z-index: 850;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar.open {
  transform: translateX(0);
}

/* Decorative glow strip on right edge */
.sidebar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--red),
    rgba(200, 16, 46, 0.3),
    transparent
  );
  opacity: 0.6;
}

/* Top glow blob */
.sidebar-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.18), transparent 70%);
  pointer-events: none;
}

.sb-head {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sb-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.sb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--red);
  object-fit: cover;
  object-position: top;
  background: var(--b4);
}
.sb-name {
  font-family: var(--fd);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
}
.sb-title {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 0.1rem;
  display: block;
}
.sb-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 0.85rem;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.sb-close:hover {
  background: rgba(200, 16, 46, 0.15);
  color: var(--red);
}

.sb-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.5rem;
  scrollbar-width: none;
}
.sb-body::-webkit-scrollbar {
  display: none;
}

.sb-section-label {
  font-family: var(--fd);
  font-size: 0.45rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: block;
  padding: 0 0.5rem;
}

.sb-nav {
  list-style: none;
  margin-bottom: 2rem;
}
.sb-nav li {
  margin-bottom: 0.3rem;
}
.sb-nav a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  color: var(--dim);
  font-family: var(--fd);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.sb-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: var(--red);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.25s var(--spring);
}
.sb-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transform: translateX(4px);
}
.sb-nav a:hover::before {
  transform: scaleY(1);
}
.sb-nav a .sbi {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  transition:
    background 0.25s,
    color 0.25s;
}
.sb-nav a:hover .sbi {
  background: rgba(200, 16, 46, 0.12);
  color: var(--red);
}
.sb-nav a span {
  flex: 1;
}
.sb-nav a .sba {
  font-size: 0.55rem;
  color: var(--dim2);
  transition:
    transform 0.25s,
    color 0.25s;
}
.sb-nav a:hover .sba {
  transform: translateX(3px);
  color: var(--dim);
}

.sb-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 1rem 0;
}

.sb-social {
  display: flex;
  gap: 0.7rem;
  padding: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.sb-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dim);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.sb-social a:hover {
  transform: translateY(-3px);
}
.sb-social a.si:hover {
  background: rgba(228, 64, 95, 0.12);
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.3);
}
.sb-social a.sf:hover {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
}
.sb-social a.sw:hover {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.sb-foot {
  padding: 1.2rem 1.5rem;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.sb-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  font-family: var(--fd);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.2s var(--spring);
}
.sb-cta-btn:hover {
  background: var(--red-2);
  transform: scale(1.02);
}
.sb-cta-btn i {
  font-size: 1rem;
}
.sb-dev {
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
}
.sb-dev a {
  color: rgba(200, 16, 46, 0.6);
  transition: color 0.2s;
}
.sb-dev a:hover {
  color: var(--red);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 840;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.6);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.97) 42%,
    rgba(8, 8, 8, 0.6) 72%,
    rgba(8, 8, 8, 0.3) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: clamp(7rem, 12vh, 10rem) 2.5rem clamp(4rem, 6vh, 6rem);
  padding-left: max(2.5rem, calc((100vw - 1320px) / 2 + 2.5rem));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-family: var(--fd);
  font-size: 0.48rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  max-width: 100%;
}
.hero-eyebrow span {
  color: var(--red);
}
.hero-h1 {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.hl1 {
  display: block;
  color: var(--white);
}
.hl2 {
  display: block;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hl2-em {
  font-family: var(--fi);
  font-style: italic;
  font-weight: 300;
  font-size: 75%;
  color: var(--dim);
}
.hl2-acc {
  color: var(--red);
  text-shadow: 0 0 80px rgba(200, 16, 46, 0.5);
}
.hl3 {
  display: block;
  color: var(--white);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-acts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
  width: fit-content;
}
.hstat {
  padding: 1rem 1.3rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1;
  min-width: 0;
}
.hstat:last-child {
  border-right: none;
}
.hstat-n {
  font-family: var(--fd);
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hstat-n sup {
  font-size: 0.6em;
  color: var(--red);
}
.hstat-l {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* Hero right — PHOTO */
.hero-right {
  position: relative;
  z-index: 2;
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3rem;
}

/* Photo with rounded corners */

.hero-photo-frame {
  position: relative;
  width: min(420px, 80%);
  animation: hFloat 7s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes hFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero-photo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 40px 40px 32px 32px;
  border: 2px solid rgba(200, 16, 46, 0.25);
  box-shadow:
    0 0 0 6px rgba(200, 16, 46, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.8),
    inset 0 0 60px rgba(200, 16, 46, 0.04);
  display: block;
  filter: contrast(1.05) saturate(0.95);
}
/* .hero-photo-frame {
  position: relative;
  width: min(340px, 80%);
  animation: hFloat 7s ease-in-out infinite;
}
@keyframes hFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 40px 40px 32px 32px;
  border: 2px solid rgba(200, 16, 46, 0.25);
  box-shadow:
    0 0 0 6px rgba(200, 16, 46, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.8),
    inset 0 0 60px rgba(200, 16, 46, 0.04);
  display: block;
  filter: contrast(1.05) saturate(0.95);
} */
/* Red glow under photo */
.hero-photo-frame::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: radial-gradient(
    ellipse,
    rgba(200, 16, 46, 0.35),
    transparent 70%
  );
  filter: blur(20px);
  z-index: -1;
}
/* Floating accent cards */
.hp-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-family: var(--fd);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: hFloat 7s ease-in-out infinite;
}
.hp-tag-1 {
  top: 8%;
  right: -18%;
  animation-delay: 1s;
  animation-duration: 6s;
}
.hp-tag-2 {
  bottom: 20%;
  left: -18%;
  animation-delay: 2s;
  animation-duration: 8s;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  border-color: rgba(200, 16, 46, 0.2);
}
.hp-tag-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(200, 16, 46, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.85rem;
}
.hp-tag-num {
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hp-tag-lbl {
  font-size: 0.55rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* Ring decoration */
.hp-ring {
  position: absolute;
  inset: -16px;
  border: 1px dashed rgba(200, 16, 46, 0.12);
  border-radius: 52px 52px 44px 44px;
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.015);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: max(2.5rem, calc((100vw - 1320px) / 2 + 2.5rem));
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-ln {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: sln 2.2s ease-in-out infinite;
}
@keyframes sln {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: top;
  }
}
.hero-scroll span {
  font-family: var(--fd);
  font-size: 0.45rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-lr;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 8rem 1.5rem 3rem;
    padding-left: 1.5rem !important;
  }
  .hero-right {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
  .hero-stats {
    width: 100%;
    max-width: 100%;
  }
  .hstat {
    padding: 0.9rem 0.8rem;
  }
}

/* ── Marquee ── */
.mq {
  overflow: hidden;
  background: var(--red);
  padding: 1rem 0;
}
.mq-t {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: mq 30s linear infinite;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mq-t span {
  font-family: var(--fd);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}
.mq-t .dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.4rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--fd);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.95rem 2rem;
  transition: all 0.25s var(--spring);
  cursor: none;
}
.btn-r {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn-r:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 6px transparent,
    0 12px 28px var(--red-glow);
}
.btn-w {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-w:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.btn-o {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1.6rem;
  font-size: 0.55rem;
}
.btn-o:hover {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.07);
}
.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 0.65rem;
}

/* ── Container ── */
.c {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 600px) {
  .c {
    padding: 0 1.5rem;
  }
}

/* ── Section Header ── */
.sh {
  text-align: center;
  margin-bottom: 5rem;
}
.lbl {
  font-family: var(--fd);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.9rem;
}
.sh h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}
.sh h2 em {
  font-family: var(--fi);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.sh p {
  margin-top: 1rem;
  color: var(--gray);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

/* ── Reveal ── */
.rv,
.rvl,
.rvr {
  opacity: 0;
  transition: all 1s var(--ease);
}
.rv {
  transform: translateY(36px);
}
.rvl {
  transform: translateX(-48px);
}
.rvr {
  transform: translateX(48px);
}
.rv.show,
.rvl.show,
.rvr.show {
  opacity: 1;
  transform: none;
}
.rv {
  transition-delay: var(--d, 0s);
}

/* ═══════ SOBRE ═══════ */
section.sobre {
  padding: 8rem 0;
  background: var(--b2);
}
.sobre-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Video with rounded corners */
.vid-wrap {
  position: relative;
  padding-bottom: 62%;
  overflow: hidden;
  border-radius: var(--r2);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.vid-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.certs {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.cert {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1.1rem;
  background: var(--b3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  font-family: var(--fd);
  font-size: 0.55rem;
  letter-spacing: 0.07em;
  color: var(--dim);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.cert:hover {
  border-color: rgba(200, 16, 46, 0.35);
  transform: translateX(4px);
}
.cert i {
  color: var(--red);
  font-size: 0.9rem;
  width: 18px;
  flex-shrink: 0;
}

.st .lbl {
  margin-bottom: 0.8rem;
}
.st h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.st h2 strong {
  font-weight: 900;
}
.st-quote {
  font-family: var(--fi);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gray);
  border-left: 2px solid var(--red);
  padding-left: 1rem;
  margin-bottom: 1.8rem;
}
.st p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.st-nums {
  display: flex;
  gap: 0;
  margin: 2.5rem 0;
  background: var(--b3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r2);
  overflow: hidden;
  flex-wrap: wrap;
}
.sn {
  flex: 1;
  min-width: 80px;
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.sn:last-child {
  border-right: none;
}
.sn-val {
  font-family: var(--fd);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}
.sn-val sup {
  font-size: 0.55em;
  color: var(--red);
}
.sn-lbl {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.4rem;
  display: block;
}
@media (max-width: 900px) {
  .sobre-g {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ═══════ MÉTODO ═══════ */
section.met {
  padding: 8rem 0;
  background: var(--black);
}
.met-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.mc {
  padding: 2.5rem 1.8rem;
  background: var(--b2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r2);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--spring),
    border-color 0.3s,
    box-shadow 0.3s;
}
.mc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.mc:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.mc:hover::before {
  opacity: 1;
}
.mc-n {
  font-family: var(--fd);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  margin-bottom: -0.3rem;
}
.mc-i {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  transition: background 0.25s;
}
.mc:hover .mc-i {
  background: rgba(200, 16, 46, 0.18);
}
.mc h3 {
  font-family: var(--fd);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}
.mc p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .met-g {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .met-g {
    grid-template-columns: 1fr;
  }
}

/* ═══════ ERROS ═══════ */
section.erros {
  padding: 8rem 0;
  background: var(--black);
}

.erros-wrap {
  background:
    linear-gradient(145deg, rgba(200, 16, 46, 0.05), transparent 35%), var(--b2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 4rem 3rem;
  overflow: hidden;
  position: relative;
}

.erros-wrap::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.12), transparent 70%);
  pointer-events: none;
}

.erros-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.erros-head h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.erros-head h2 em {
  font-family: var(--fi);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}

.erros-head p {
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.erros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.erro-card {
  background: var(--b3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  transition:
    transform 0.3s var(--spring),
    border-color 0.3s,
    box-shadow 0.3s;
}

.erro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.erro-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.erro-card h3 {
  font-family: var(--fd);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.erro-card p {
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.7;
  margin: 0;
}

.erros-foot {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.erros-foot p {
  font-family: var(--fi);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--dim);
  margin-bottom: 1.2rem;
}

@media (max-width: 1100px) {
  .erros-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .erros-wrap {
    padding: 2.4rem 1.4rem;
    border-radius: 24px;
  }

  .erros-grid {
    grid-template-columns: 1fr;
  }

  .erros-head {
    margin-bottom: 2.5rem;
  }

  .erros-head h2 {
    font-size: 1.75rem;
  }

  .erro-card {
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
  }

  .erros-foot {
    margin-top: 2.2rem;
  }

  .erros-foot p {
    font-size: 1rem;
  }
}

/* ═══════ SERVIÇOS ═══════ */
.svc-g {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.svc-g > * {
  height: 100%;
}

@media (max-width: 1100px) {
  .svc-g {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .svc-g {
    grid-template-columns: 1fr;
  }
}
.scard {
  background: var(--b3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r2);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--spring),
    border-color 0.3s,
    box-shadow 0.3s;
}
.scard:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 16, 46, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.scard-feat {
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.1), var(--b3));
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow:
    0 0 0 1px rgba(200, 16, 46, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.4);
}
.scard-feat:hover {
  border-color: rgba(200, 16, 46, 0.5);
}
.sbadge {
  position: absolute;
  top: -1px;
  right: 1.2rem;
  padding: 0.3rem 0.9rem;
  background: var(--red);
  font-family: var(--fd);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 0 10px 10px;
}
.scard-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
}
.scard h3 {
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.scard > p {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.scard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.scard li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--gray);
}
.scard li i {
  color: var(--red);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.scard-price {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-top: auto;
}
.scard-price small {
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--gray);
}
@media (max-width: 1100px) {
  .svc-g {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .svc-g {
    grid-template-columns: 1fr;
  }
}

/* ═══════ RESULTADOS ═══════ */
section.res {
  padding: 8rem 0;
  background: var(--black);
}
.res-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 4.5rem;
}
.rcard {
  background: var(--b2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r2);
  overflow: hidden;
  transition:
    transform 0.35s var(--spring),
    box-shadow 0.35s;
}
.rcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
}
.rcard-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.rcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
  filter: grayscale(0.25);
}
.rcard:hover .rcard-img img {
  transform: scale(1.06);
  filter: grayscale(0);
}
.rcard-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.92) 30%, transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.rcard:hover .rcard-ov {
  opacity: 1;
}
.rcard-ov p {
  color: var(--white);
  font-style: italic;
  font-family: var(--fi);
  font-size: 1rem;
  line-height: 1.5;
}
.rcard-body {
  padding: 1.6rem;
}
.rcard-body h4 {
  font-family: var(--fd);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.rtag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 50px;
  font-family: var(--fd);
  font-size: 0.5rem;
  letter-spacing: 0.07em;
  color: var(--red);
  margin-bottom: 0.7rem;
}
.rcard-body > p {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.res-cta {
  text-align: center;
}
.res-cta p {
  font-family: var(--fi);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 1.4rem;
}
@media (max-width: 900px) {
  .res-g {
    grid-template-columns: 1fr;
  }
}

/* ═══════ DEPOIMENTOS ═══════ */
section.dep {
  padding: 8rem 0;
  background: var(--b2);
}
.dep-slider {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.dep-track {
  display: flex;
  gap: 1.8rem;
  transition: transform 0.5s var(--ease);
  will-change: transform;
  min-width: 0;
}
.dcard {
  flex: 0 0 calc(50% - 0.9rem);
  background: var(--b3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r2);
  padding: 2.5rem;
  transition: border-color 0.3s;
}
.dcard:hover {
  border-color: rgba(200, 16, 46, 0.25);
}
.dcard-stars {
  color: #ffc107;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1.2rem;
}
.dcard-text {
  font-family: var(--fi);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dim);
  margin-bottom: 2rem;
}
.dcard-auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dcard-auth img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid rgba(200, 16, 46, 0.25);
  object-fit: cover;
}
.dcard-auth strong {
  display: block;
  font-family: var(--fd);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.dcard-auth span {
  color: var(--gray);
  font-size: 0.78rem;
}
.dep-ctrls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.dep-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 0.85rem;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.dep-btn:hover {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  color: var(--white);
}
.dep-dots {
  display: flex;
  gap: 0.5rem;
}
.ddot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition:
    background 0.3s,
    width 0.3s;
  cursor: pointer;
}
.ddot.on {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}
@media (max-width: 760px) {
  .dcard {
    flex: 0 0 100%;
    min-width: 0;
  }
}

/* ═══════ FAQ ═══════ */
section.faq {
  padding: 8rem 0;
  background: var(--black);
}
.faq-g {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.fq-left .lbl {
  margin-bottom: 0.8rem;
}
.fq-left h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.fq-left h2 strong {
  font-weight: 900;
}
.fq-left h2 em {
  font-family: var(--fi);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.fq-left > p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.fq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fi {
  background: var(--b2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s;
}
.fi.on {
  border-color: rgba(200, 16, 46, 0.25);
}
.fi-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-family: var(--fd);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}
.fi-q:hover {
  color: var(--red);
}
.fi-q i {
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform 0.35s var(--spring);
}
.fi.on .fi-q i {
  transform: rotate(45deg);
}
.fi-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.fi-a p {
  padding: 0 1.5rem 1.3rem;
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.9rem;
  margin: 0;
}
.fi.on .fi-a {
  max-height: 300px;
}
@media (max-width: 900px) {
  .faq-g {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ═══════ REDES ═══════ */
section.redes {
  padding: 6rem 0;
  background: var(--b2);
}
.redes-in {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}
.redes-txt .lbl {
  margin-bottom: 0.7rem;
}
.redes-txt h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.redes-txt h2 em {
  font-family: var(--fi);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.redes-txt p {
  color: var(--gray);
  font-size: 0.9rem;
}
.redes-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
  max-width: 500px;
}
.rcard2 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.6rem;
  background: var(--b3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r2);
  color: var(--white);
  transition:
    transform 0.3s var(--spring),
    border-color 0.3s,
    box-shadow 0.3s;
}
.rcard2:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}
.rcard2.ri:hover {
  border-color: rgba(228, 64, 95, 0.3);
}
.rcard2.rf:hover {
  border-color: rgba(24, 119, 242, 0.3);
}
.rcard2 > i {
  font-size: 1.7rem;
  flex-shrink: 0;
}
.rcard2.ri > i {
  color: #e4405f;
}
.rcard2.rf > i {
  color: #1877f2;
}
.rcard2 > div {
  flex: 1;
}
.rcard2 strong {
  display: block;
  font-family: var(--fd);
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
}
.rcard2 span {
  display: block;
  color: var(--gray);
  font-size: 0.78rem;
}
.rcard2 .rf-n {
  color: var(--red);
  font-size: 0.65rem !important;
}
.rcard2 .arr {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  transition:
    transform 0.3s,
    color 0.3s;
  flex-shrink: 0;
}
.rcard2:hover .arr {
  transform: translateX(4px);
  color: var(--dim);
}
@media (max-width: 800px) {
  .redes-in {
    flex-direction: column;
  }
  .redes-cards {
    max-width: 100%;
    width: 100%;
  }
}

/* ═══════ CONTATO ═══════ */
section.ct {
  padding: 8rem 0;
  background: var(--black);
}
.ct-g {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.ct-l .lbl {
  margin-bottom: 0.8rem;
}
.ct-l h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.ct-l h2 strong {
  font-weight: 900;
}
.ct-l h2 em {
  font-family: var(--fi);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.ct-l > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.ct-dados {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ctd {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.3rem;
  background: var(--b2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  transition: border-color 0.25s;
  color: var(--white);
}
a.ctd:hover {
  border-color: rgba(200, 16, 46, 0.25);
}
.ctd-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.9rem;
}
.ctd strong {
  display: block;
  font-family: var(--fd);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.ctd span {
  color: var(--gray);
  font-size: 0.82rem;
}

.ct-form {
  background: var(--b2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r2);
  padding: 3rem;
}
.ct-form h3 {
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.ct-form > p {
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 2.2rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--fd);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.field input,
.field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--b3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.9rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}
.field input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.field select option {
  background: var(--b3);
}
@media (max-width: 900px) {
  .ct-g {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ct-form {
    padding: 2rem;
  }
}

/* ═══════ FOOTER ═══════ */
footer {
  background: var(--b2);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 5rem 0 2rem;
}
.foot-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.foot-brand-logo {
  font-family: var(--fd);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  width: 46px;
  height: 46px;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  margin-bottom: 1rem;
}
.foot-brand h3 {
  font-family: var(--fd);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.foot-brand p {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}
.foot-soc {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.foot-soc a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 0.9rem;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.foot-soc a:hover {
  transform: translateY(-3px);
}
.foot-soc a:nth-child(1):hover {
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.3);
  background: rgba(228, 64, 95, 0.08);
}
.foot-soc a:nth-child(2):hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.08);
}
.foot-soc a:nth-child(3):hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.08);
}
.foot-col h4 {
  font-family: var(--fd);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.4rem;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.foot-col a {
  color: var(--dim);
  font-size: 0.85rem;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: block;
}
.foot-col a:hover {
  color: var(--white);
  padding-left: 5px;
}
.foot-col p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.foot-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.foot-btm a {
  color: rgba(200, 16, 46, 0.6);
  transition: color 0.2s;
}
.foot-btm a:hover {
  color: var(--red);
}
@media (max-width: 1000px) {
  .foot-g {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-g {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .foot-btm {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════ MOBILE OVERFLOW FIXES ══════════ */
@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 0.42rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.8rem;
    gap: 0.4rem;
  }
  .hero-h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .btn-lg {
    padding: 0.95rem 1.6rem;
    font-size: 0.58rem;
  }
  .hero-acts {
    gap: 0.7rem;
  }
  .hero-acts .btn {
    padding: 0.85rem 1.3rem;
    font-size: 0.55rem;
  }
  .hero-stats {
    border-radius: 12px;
  }
  .hstat {
    padding: 0.75rem 0.7rem;
  }
  .hstat-n {
    font-size: 1.3rem;
  }
  .hstat-l {
    font-size: 0.45rem;
    letter-spacing: 0.08em;
  }
  .mq-t span {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
  .sh h2 {
    font-size: 1.7rem;
  }
  .sh {
    margin-bottom: 3.5rem;
  }
  .st-nums {
    flex-wrap: nowrap;
  }
  .sn {
    padding: 0.9rem 0.7rem;
  }
  .sn-val {
    font-size: 1.3rem;
  }
  .sn-lbl {
    font-size: 0.45rem;
  }
  .ct-form {
    padding: 1.6rem;
  }
  .foot-g {
    gap: 1.8rem;
  }
  .foot-brand-logo {
    margin-bottom: 0.7rem;
  }
  .sb-nav a {
    padding: 0.8rem 0.8rem;
  }
  .redes-in {
    gap: 2rem;
  }
  .res-cta .btn-lg {
    font-size: 0.55rem;
    padding: 0.95rem 1.4rem;
    text-align: center;
  }
  /* Depoimentos cards tighter */
  .dcard {
    padding: 1.8rem 1.4rem;
  }
  /* FAQ */
  .fi-q {
    padding: 1.1rem 1.2rem;
    font-size: 0.58rem;
  }
  .fi-a p {
    padding: 0 1.2rem 1.1rem;
  }
  /* Contato */
  .ctd {
    padding: 0.85rem 1rem;
  }
  .ctd-ico {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  /* Sobre nums */
  .sobre-g {
    gap: 2rem;
  }
}

/* Prevent any element from exceeding viewport */
.hero-left,
.sobre-g,
.met-g,
.svc-g,
.res-g,
.dep-slider,
.faq-g,
.redes-in,
.ct-g,
.foot-g {
  min-width: 0;
}
.c {
  overflow: hidden;
}

/* Marquee containment */
.mq {
  overflow: hidden;
  max-width: 100vw;
}

/* Depoimentos track: ensure cards don't exceed container */
.dep-slider {
  overflow: hidden;
  position: relative;
}
.dep-track {
  touch-action: pan-y;
}
