/* ================================================================
   VIDROCON — style.css  v5.0
   Dark Navy + Cyan #00b8d4 — Padrão Instagram VIDROCON
   ================================================================ */

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

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

:root {
  --bg: #060e1a;
  --bg2: #091628;
  --surface: #0d2040;
  --cyan: #00b8d4;
  --cyan-d: #009ab2;
  --cyan-glow: rgba(0, 184, 212, 0.25);
  --white: #ffffff;
  --off: rgba(255, 255, 255, 0.85);
  --muted: rgba(180, 220, 255, 0.5);
  --border: rgba(0, 184, 212, 0.18);
  --grad: linear-gradient(135deg, #00b8d4, #0066cc);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  --t: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;
  --r: 12px;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.cyan {
  color: var(--cyan);
}

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

/* ── Section titles ── */
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.sec-title-lg {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
}

.sec-head {
  margin-bottom: 56px;
}

.sec-head.centered {
  text-align: center;
}

.sec-head.centered .sec-sub {
  margin: 0 auto;
}

/* ── Section padding ── */
.section {
  padding: 100px 0;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--cyan);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--t);
  box-shadow: 0 6px 28px var(--cyan-glow);
  white-space: nowrap;
}

.btn-main:hover {
  background: #00d4f5;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 184, 212, 0.45);
}

.btn-main.big {
  padding: 18px 40px;
  font-size: 1.08rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--t);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 3px;
  transition: var(--t);
}

.btn-ghost:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--t);
}

.btn-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(220, 39, 67, 0.4);
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--t);
}

.nav.stuck {
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--t);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(0, 184, 212, 0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--cyan);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 50px;
  flex-shrink: 0;
  transition: var(--t);
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.nav-cta:hover {
  background: #00d4f5;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ================================================================
   HERO VIDEO SECTION (LIMPO SEM TEXTO POR CIMA)
   ================================================================ */
.hero-video-section {
  position: relative !important;
  width: 100% !important;
  padding-top: 76px !important;
  background: var(--bg) !important;
  overflow: visible !important;
}

.hero-video-wrap {
  width: 100% !important;
  position: relative !important;
  background: var(--bg) !important;
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

.hero-full-video {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
  overflow: visible !important;
}

/* Transição Suave (Degradê de Fusão do Vídeo com o Fundo) */
.hero-video-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 14, 26, 0.4) 35%, rgba(6, 14, 26, 0.85) 75%, #060e1a 100%);
  pointer-events: none;
  z-index: 3;
}

/* HERO TEXT SECTION (CENTRALIZADO ABAIXO DO VÍDEO) */
.hero-text-section {
  padding: 56px 0 72px;
  background: #060e1a;
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  margin-top: -1px;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.hero-heading {
  font-family: var(--font-d);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero bar — idêntico ao bottom dos posts do Instagram */
.hero-bar {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.hero-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-name {
  font-family: var(--font-d);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.bar-tag {
  font-size: 0.48rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
  max-width: 160px;
  line-height: 1.3;
}

/* ================================================================
   SERVIÇOS
   ================================================================ */
.services {
  background: var(--bg);
}

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

.srv-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.srv-card:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--cyan-glow);
}

.srv-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.2);
  transition: transform 0.6s ease;
}

.srv-card:hover .srv-img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

/* Overlay texto estilo Instagram */
.srv-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(6, 14, 26, 0.92));
  display: flex;
  flex-direction: column;
}

.srv-eyebrow {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.srv-hl {
  font-family: var(--font-d);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  line-height: 1;
}

/* Card body */
.srv-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.srv-icon-wrap {
  font-size: 1.4rem;
}

.srv-text h3 {
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.srv-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.srv-link {
  display: inline-block;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  transition: var(--t);
  letter-spacing: 0.04em;
}

.srv-link:hover {
  color: var(--white);
  letter-spacing: 0.1em;
}

/* ================================================================
   SOBRE
   ================================================================ */
.sobre {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.sobre-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sobre-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15) saturate(1.5);
}

.sobre-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 14, 26, 0.96) 0%, rgba(6, 14, 26, 0.7) 100%);
}

.sobre-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sobre-text {
  max-width: 100%;
}

.sobre-p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.sobre-p strong {
  color: var(--white);
  font-weight: 700;
}

.sobre-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--cyan-glow);
}

.sobre-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: transform 0.6s ease;
}

.sobre-img-card:hover .sobre-card-img {
  transform: scale(1.04);
}

.sobre-card-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, rgba(6, 14, 26, 0.95));
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-d);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  line-height: 1;
}

.badge-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Stats */
.sobre-stats {
  display: flex;
  gap: 28px;
  margin: 36px 0 40px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  background: rgba(0, 184, 212, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 28px;
  min-width: 110px;
  text-align: center;
  transition: var(--t);
}

.stat-box:hover {
  border-color: var(--cyan);
  background: rgba(0, 184, 212, 0.14);
}

.stat-n {
  font-family: var(--font-d);
  font-size: 3rem;
  letter-spacing: 0.03em;
  color: var(--cyan);
  line-height: 1;
}

.stat-suf {
  font-family: var(--font-d);
  font-size: 2rem;
  color: var(--cyan);
  display: inline;
}

.stat-n+.stat-suf {
  position: relative;
  top: -4px;
  margin-left: 2px;
}

.stat-l {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.sobre-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================================================================
   GALLERY — grade uniforme, pequenas
   ================================================================ */
.gallery {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

.g-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  height: 200px;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.2);
  transition: transform 0.6s ease, filter 0.4s;
}

.g-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

/* Label estilo posts do Instagram */
.g-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(transparent, rgba(6, 14, 26, 0.92));
  display: flex;
  flex-direction: column;
  transform: translateY(4px);
  transition: var(--t);
}

.g-item:hover .g-label {
  transform: translateY(0);
}

.g-eye {
  font-family: var(--font-b);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.g-big {
  font-family: var(--font-d);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  line-height: 1;
}

.gallery-foot {
  text-align: center;
}

/* ================================================================
   CONTATO
   ================================================================ */
.contato {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.contato-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contato-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.1) saturate(1.5) hue-rotate(-15deg);
}

.contato-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 184, 212, 0.07) 0%, transparent 70%),
    linear-gradient(rgba(6, 14, 26, 0.94), rgba(6, 14, 26, 0.94));
}

.contato-inner {
  position: relative;
  z-index: 1;
}

.contato-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.75;
}

.contato-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #040b14;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 28px;
}

.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-name {
  font-family: var(--font-d);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-tag {
  font-size: 0.5rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
  max-width: 170px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--t);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-hours {
  font-size: 0.78rem;
  color: var(--muted);
  flex-shrink: 0;
}

.footer-copy {
  padding: 16px 28px 28px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ================================================================
   WHATSAPP FAB
   ================================================================ */
.wa-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  padding: 14px 18px 14px 16px;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
  transition: var(--t);
}

.wa-fab:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 48px rgba(34, 197, 94, 0.55);
}

.wa-label {
  white-space: nowrap;
}

.wa-ring {
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(34, 197, 94, 0.45);
  border-radius: 50px;
  animation: ring 2.5s ease infinite;
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

/* ================================================================
   SCROLL REVEAL — animações ao aparecer
   ================================================================ */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv.in,
.rv-l.in,
.rv-r.in {
  opacity: 1;
  transform: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
/* ================================================================
   RESPONSIVE — TODOS OS DISPOSITIVOS E TAMANHOS
   ================================================================ */

/* Large Desktop / Laptops (<= 1200px) */
@media (max-width: 1200px) {
  .wrap {
    max-width: 100%;
    padding: 0 24px;
  }

  .srv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* Medium Desktop / Tablet Landscape (<= 1024px) */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sobre-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sobre-card-img {
    height: 320px;
  }
}

/* Tablet Portrait (<= 900px) */
@media (max-width: 900px) {
  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre-card-img {
    height: 280px;
  }
}

/* Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 90px 24px 40px;
    gap: 8px;
    z-index: 99;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    overflow-y: auto;
  }

  .nav-menu.open .nav-link {
    font-size: 1.25rem;
    padding: 16px 20px;
    border-radius: var(--r);
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .hero-video-section {
    padding-top: 68px;
  }

  .hero-full-video {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    overflow: visible !important;
  }

  .hero-video-fade {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .hero-text-section {
    padding: 48px 0 56px;
    text-align: center;
  }

  .hero-text-content {
    align-items: center;
    text-align: center;
  }

  .hero-eyebrow,
  .hero-heading,
  .hero-sub {
    text-align: center;
  }

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

  .hero-heading {
    font-size: clamp(2.8rem, 11vw, 5rem);
  }

  .logo-img {
    height: 38px;
  }

  /* Compact mobile buttons */
  .btn-main {
    padding: 11px 22px;
    font-size: 0.88rem;
  }

  .btn-main.big {
    padding: 13px 26px;
    font-size: 0.92rem;
  }

  .btn-outline {
    padding: 11px 22px;
    font-size: 0.88rem;
  }

  .btn-insta {
    padding: 11px 22px;
    font-size: 0.88rem;
  }

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

  .srv-img-wrap {
    height: 190px;
  }

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

  .g-item {
    height: 160px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-logo-img {
    height: 38px;
  }

  .wa-label {
    display: none;
  }

  .wa-fab {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }

  .wa-ring {
    border-radius: 50%;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .wrap {
    padding: 0 18px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero-heading {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .hero-sub {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  /* Controlled button sizing for phone screens */
  .btn-main,
  .btn-outline,
  .btn-insta {
    width: auto;
    max-width: 100%;
    justify-content: center;
    font-size: 0.84rem;
    padding: 10px 20px;
  }

  .btn-main.big {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

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

  .g-item {
    height: 190px;
  }

  .contato-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .footer-copy {
    font-size: 0.7rem;
    padding: 14px 18px 24px;
  }
}

/* Extra Small Mobile (<= 360px) */
@media (max-width: 360px) {
  .wrap {
    padding: 0 14px;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .logo-img {
    height: 32px;
  }

  .btn-main,
  .btn-outline,
  .btn-insta {
    padding: 9px 18px;
    font-size: 0.8rem;
  }
}