/* ═══════════════════════════════════════════════════
   F9 PARTS — Landing Page v2
   Design: Industrial Elegance — "Split Hero" Edition
   ═══════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --bg: #1e1e1e;
  --bg-2: #242424;
  --bg-3: #2c2c2c;
  --accent: #c0c424;
  --accent-dark: #9ea01e;
  --accent-glow: rgba(192, 196, 36, 0.15);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #767676;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ─── CONTAINER ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── UTILITIES ───────────────────────────────────── */
.highlight {
  color: var(--accent);
  font-style: normal;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--accent {
  background: var(--accent);
  color: #111;
}

.btn--accent:hover {
  background: #d4d929;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192, 196, 36, 0.35);
}

.btn--accent:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(192, 196, 36, 0.4);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}


/* ─── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text);
}

.navbar__cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-nav__link:hover {
  color: var(--accent);
}


/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  /* Opacidade maior apenas na área visível */
  filter: grayscale(85%) contrast(1.2);
  /* Mais cinza/industrial */

  /* Efeito de vinheta focado no lado direito e apagando para as bordas e para a esquerda */
  -webkit-mask-image: radial-gradient(ellipse at 75% 50%, black 10%, transparent 75%);
  mask-image: radial-gradient(ellipse at 75% 50%, black 10%, transparent 75%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* Linha de destaque lateral */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  width: 3px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

/* ── Hero: texto ── */
.hero__left {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s 0.2s forwards;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 196, 36, 0.5);
  }

  60% {
    box-shadow: 0 0 0 8px transparent;
  }
}

.hero__title {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(240, 240, 240, 0.62);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.8s forwards;
}

/* ── Trust bar: faixa de largura total ancorada na base do hero ── */
.hero__trust-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--border);
  padding: 1.6rem 0;
  opacity: 0;
  animation: fadeIn 0.8s 1.1s forwards;
}

.hero__trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.htb-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.htb-item:hover .htb-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.htb-item:hover .htb-icon svg {
  color: #111;
}

.htb-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(192, 196, 36, 0.08);
  border: 1px solid rgba(192, 196, 36, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.htb-icon svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
  transition: color var(--transition);
}

.htb-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.htb-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.htb-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.htb-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 1.25rem;
}

/* ── Hero: produto ── */
.hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.9s 0.6s forwards;
}

.hero__product-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero__product-glow {
  position: absolute;
  inset: 15% 5%;
  background: radial-gradient(ellipse at center, rgba(192, 196, 36, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero__product-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  /* Remove o fundo branco da imagem */
  mix-blend-mode: luminosity;
  filter: brightness(1.05) contrast(1.05);
  animation: floatY 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}


/* ─── TRUST ───────────────────────────────────────── */
.trust {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* Logos */
.logos-section {
  padding: 4.5rem 0 3rem;
}

.logos-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  margin-top: 1.75rem;
}

.logos-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
}

.logo-box {
  height: 120px;
  min-width: 260px;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0.85;
}

.logo-box:hover {
  opacity: 1;
  box-shadow: 0 8px 24px rgba(192, 196, 36, 0.15);
}

.logo-box img {
  max-height: 100px;
  max-width: 210px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: var(--transition);
}

/* .logo-box:hover img {
  filter: grayscale(0%);
} */

/* Gallery */
.gallery-section {
  padding: 3rem 0 6rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.gallery-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1rem;
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(192, 196, 36, 0.2);
}

.gallery-card--large {
  grid-column: 1;
  grid-row: 1;
}

.gallery-card--tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.gallery-card--small {
  grid-column: 1;
  grid-row: 2;
}

/* Imagem real no card grande */
.gallery-card__img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-card__img-real {
  transform: scale(1.05);
}

/* Placeholder cards */
.gallery-card__img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-card__img {
  transform: scale(1.04);
}

.placeholder-img {
  background: linear-gradient(135deg, #242424 0%, #2c2c2c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.placeholder-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.placeholder-label small {
  font-size: 0.7rem;
  display: block;
  color: #3a3a3a;
  margin-top: 0.25rem;
}

.gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card__overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}


/* ─── GALLERY INTRO / MISSION TEXT ───────────────── */
.gallery-intro {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(240, 240, 240, 0.7);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 0.75rem;
}

.gallery-mission {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.7;
  max-width: 700px;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(192, 196, 36, 0.2);
  margin-bottom: 0;
}

/* ─── GALLERY SPLIT LAYOUT ────────────────────────── */
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.gallery-split__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-split__text .section-title {
  margin-bottom: 1.25rem;
}

.gallery-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ─── GALLERY 4-CARD ──────────────────────────────── */

.gallery-card4 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.35s ease;
}

.gallery-card4:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  border-color: rgba(192, 196, 36, 0.35);
  transform: translateY(-6px);
}

.gallery-card4__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card4:hover .gallery-card4__img {
  transform: scale(1.06);
}

.gallery-card4__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gallery-card4:hover .gallery-card4__overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card4__overlay strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.gallery-card4__overlay span {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(240, 240, 240, 0.85);
  line-height: 1.5;
  display: block;
}

/* ─── CARD TAG (always visible) ──────────────────── */
.gallery-card4__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(192, 196, 36, 0.4);
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.gallery-card4:hover .gallery-card4__tag {
  opacity: 0;
}

@media (max-width: 960px) {
  .gallery-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gallery-split__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card4 {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .gallery-split__grid {
    gap: 0.5rem;
  }
  .gallery-card4 {
    aspect-ratio: 1 / 1;
  }
}


/* ─── BRANDS SECTION ──────────────────────────────── */
.brands-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 5rem;
}

.brands-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  margin-top: 2rem;
}

.brands-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: logoScroll 18s linear infinite;
}

.brands-track.is-static {
  animation: none;
  justify-content: center;
  width: 100%;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
}

.brand-box {
  height: 90px;
  min-width: 200px;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.brand-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(192, 196, 36, 0.3);
  box-shadow: 0 8px 24px rgba(192, 196, 36, 0.12);
}

.brand-box img {
  max-height: 58px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(60%) brightness(1.1);
  transition: var(--transition);
}

.brand-box:hover img {
  filter: grayscale(0%) brightness(1.15);
}


/* ─── FOOTER EXTRAS ───────────────────────────────── */
.footer__cnpj {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 400;
}

.footer__address {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: normal;
  line-height: 1.6;
}


/* ─── CONTACT ─────────────────────────────────────── */
.contact {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 6rem 0 7rem;
}

.contact__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact__header .section-label {
  justify-content: center;
}

.contact__header .section-label::before {
  display: none;
}

.contact__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.contact__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Brilho de canto no hover */
.contact-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(192, 196, 36, 0.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  border-color: rgba(192, 196, 36, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card--wa .contact-card__icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-card--email .contact-card__icon {
  background: var(--accent-glow);
  color: var(--accent);
}

.contact-card--addr .contact-card__icon {
  background: rgba(120, 130, 255, 0.1);
  color: #8b9bff;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  transition: color var(--transition);
}

.contact-card:hover .contact-card__value {
  color: var(--accent);
}

.contact-card__hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 400;
  transition: color var(--transition);
}

.contact-card:hover .contact-card__hint {
  color: var(--text-muted);
}


/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 3rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 960px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 960px) {
  .footer__brand {
    align-items: flex-start;
  }
}

.footer__logo {
  height: 24px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer__logo:hover {
  opacity: 1;
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

@media (min-width: 960px) {
  .footer__tagline {
    text-align: left;
  }
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.social-link:hover svg {
  transform: scale(1.1);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

@media (min-width: 960px) {
  .footer__copy {
    text-align: right;
  }
}


/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    text-align: center;
  }

  .hero__trust-strip {
    justify-content: center;
  }

  .hero__right {
    order: -1;
  }

  .hero__product-wrap {
    max-width: 380px;
  }

  .hero__trust-bar-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .htb-divider {
    display: none;
  }

  .htb-item {
    flex: 0 0 calc(50% - 1rem);
    min-width: 160px;
  }

  .contact__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  .gallery-card--large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-card--tall {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-card--small {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: 2.6rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .htb-item {
    flex: 0 0 100%;
  }

  .gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-card--large {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-card--tall {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-card--small {
    grid-column: 1;
    grid-row: 3;
  }

  .contact__title {
    font-size: 2rem;
  }
}