/* ============================================================
   VITRAIS ASSÚ – Design System & Styles
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --navy:          #0f2356;
  --navy-dark:     #071540;
  --navy-mid:      #1a3875;
  --blue-baby:     #89bfed;
  --blue-light:    #c5dff7;
  --blue-pale:     #eaf3fc;
  --white:         #ffffff;
  --off-white:     #f7f9fc;
  --gray-50:       #f8fafc;
  --gray-100:      #f1f5f9;
  --gray-200:      #e2e8f0;
  --gray-400:      #94a3b8;
  --gray-600:      #475569;
  --gray-800:      #1e293b;
  --text-primary:  #0f1a35;
  --text-secondary:#3d5270;
  --text-muted:    #6b84a4;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Border Radius */
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-xl:  48px;
  --radius-pill:9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(15,35,86,.08);
  --shadow-md:  0 8px 32px rgba(15,35,86,.12);
  --shadow-lg:  0 20px 60px rgba(15,35,86,.16);
  --shadow-xl:  0 32px 80px rgba(15,35,86,.22);

  /* Glass */
  --glass-bg:   rgba(255,255,255,0.18);
  --glass-bg-dark: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.45);
  --glass-blur: blur(16px);

  /* Transition */
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- REUSABLE UTILITIES ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.section-tag--light {
  color: var(--blue-light);
  background: rgba(137, 191, 237, 0.15);
  border-color: rgba(137, 191, 237, 0.3);
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-title--light {
  color: var(--white);
}

.hidden {
  display: none !important;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity .2s;
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,35,86,.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15,35,86,.45);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-xl);
  height: 110px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,35,86,0.06);
}

.header.scrolled {
  height: 90px;
  box-shadow: 0 4px 24px rgba(15,35,86,0.10);
}

.header__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-img {
  height: 85px;
  width: auto;
  transition: var(--transition);
}

.header__logo-img:hover {
  transform: scale(1.04);
}

.header__nav { flex: 1; display: flex; justify-content: center; }

.header__nav-list {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}

.header__nav-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: width .3s;
}

.header__nav-link:hover {
  color: var(--navy);
}

.header__nav-link:hover::after { width: 100%; }

.header__social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--blue-pale);
  transition: var(--transition);
}

.header__social-link:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.header__mobile-controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__mobile-insta {
  display: none;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.header__mobile-insta:hover {
  color: var(--blue-baby);
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 72px 0 0;
  position: relative;
  background:
    linear-gradient(90deg, rgba(7,21,64,.85) 0%, rgba(15,35,86,.4) 60%, transparent 100%),
    url('images/novobackassu.webp') center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Shapes */
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(137,191,237,.35) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: floatShape1 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15,35,86,.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatShape2 10s ease-in-out infinite;
}

.hero__shape--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(197,223,247,.5) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: floatShape3 12s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 30px) scale(1.05); }
}

@keyframes floatShape2 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -20px) scale(1.08); }
}

@keyframes floatShape3 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(-15px, 15px); }
}

.hero__container {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

/* Hero Text Card */
.hero__text-card {
  background: transparent;
  padding: 48px 0;
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  margin-right: auto; 
  animation: fadeInLeft .8s ease forwards;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}

.hero__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero__headline-accent {
  color: var(--blue-light);
  text-shadow: 0 4px 12px rgba(56,189,248,0.3);
}

.hero__subheadline {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero__cta-group {
  margin-bottom: var(--space-xl);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-size: 26px; /* increased size */
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Image */
.hero__image-wrap {
  position: relative;
  animation: fadeInRight .8s ease .15s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  aspect-ratio: 4/3;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hero__image-inner:hover .hero__img {
  transform: scale(1.04);
}

.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,86,.2) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}

/* Floating Badges */
.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(15,35,86,.15);
  z-index: 5;
  animation: badgeFloat 4s ease-in-out infinite;
  cursor: default;
  white-space: nowrap;
}

.badge--top-left    { top: -16px; left: -24px; animation-delay: 0s; }
.badge--top-right   { top: 20px; right: -24px; animation-delay: 1s; }
.badge--bottom-left { bottom: 24px; left: -28px; animation-delay: 2s; }
.badge--bottom-right{ bottom: -12px; right: -20px; animation-delay: .5s; }

@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.badge__icon {
  font-size: 22px;
  line-height: 1;
}

.badge__text {
  display: flex;
  flex-direction: column;
}

.badge__text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

.badge__text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: var(--space-lg);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  animation: fadeIn 1s 1.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   SOBRE / TRADIÇÃO
   ============================================================ */
.sobre {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--off-white);
}

.sobre__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image stack */
.sobre__image-col { position: relative; }

.sobre__image-stack { position: relative; height: 520px; }

.sobre__img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  position: absolute;
  box-shadow: var(--shadow-lg);
}

.sobre__img--main {
  width: 80%;
  height: 440px;
  top: 0; left: 0;
  z-index: 1;
  object-position: top;
  transition: transform .5s ease;
}

.sobre__img--main:hover { transform: scale(1.02); }

.sobre__img--accent {
  width: 55%;
  height: 280px;
  bottom: 0; right: 0;
  z-index: 2;
  border: 4px solid var(--white);
  transition: transform .5s ease;
}

.sobre__img--accent:hover { transform: scale(1.03); }

.sobre__image-badge {
  position: absolute;
  top: 50%; left: -32px;
  transform: translateY(-50%);
  z-index: 10;
  padding: 20px 24px;
  text-align: center;
  background: var(--navy);
  border: 2px solid rgba(137,191,237,.4);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  animation: badgeFloat 5s ease-in-out infinite;
}

.sobre__image-badge-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--blue-baby);
}

.sobre__image-badge-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}

/* Text Column */
.sobre__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.sobre__text strong {
  color: var(--navy);
  font-weight: 700;
}

.sobre__motto {
  font-size: 16px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  padding-left: 16px;
  border-left: 3px solid var(--blue-baby);
}

.sobre__services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.service-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.service-tag:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.sobre__cta { margin-top: var(--space-lg); }

.sobre__cta-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-style: italic;
}

/* ============================================================
   SERVICOS
   ============================================================ */
.servicos {
  padding: var(--space-3xl) 0;
  background: var(--white);
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue-baby), var(--navy));
}

.servicos__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.servicos__header {
  margin-bottom: var(--space-2xl);
}

.text-center {
  text-align: center;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  justify-content: center;
}

.servico__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  transition: transform .3s ease;
}

.servico__item:hover {
  transform: translateY(-8px);
}

.servico__img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  flex-shrink: 0;
}

.servico__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.servico__item:hover .servico__img-wrap img {
  transform: scale(1.1);
}

.servico__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3875 100%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(137,191,237,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(197,223,247,.08) 0%, transparent 60%);
  pointer-events: none;
}

.video-section__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.video-section__subtitle {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  margin-bottom: var(--space-2xl);
}

.video-section__player-wrap {
  padding: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
}

.video-section__player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

.video-section__thumbnail,
.video-section__iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.video-section__thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.video-section__thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,21,64,.55);
}

.video-section__iframe {
  border: none;
}

/* Play Button */
.video-section__play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border: none;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(255,255,255,.4);
  animation: playPulse 2.5s ease-in-out infinite;
}

.video-section__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 40px rgba(255,255,255,.4);
  animation: none;
}

.video-section__play-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  animation: playRing 2.5s ease-in-out infinite;
}

@keyframes playPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  50%      { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
}

@keyframes playRing {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.2); opacity: 0; }
}

.video-section__play-icon {
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   GALERIA GLIDE E LIGHTBOX
   ============================================================ */
.galeria {
  position: relative;
  background: var(--off-white);
  padding: var(--space-3xl) 0;
}

.galeria__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.galeria__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.galeria__header .section-title {
  margin-bottom: var(--space-sm);
}

.galeria__subtitle {
  font-size: 17px;
  color: var(--text-muted);
}

.gallery-glide {
  padding: 0 60px 50px; /* space for arrows and bullets */
}

.galeria__item {
  width: 100%;
  height: 450px;
  max-height: 500px;
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.galeria__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.galeria__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,21,64,.85) 0%, rgba(7,21,64,.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  opacity: 1;
}

.galeria__item:hover .galeria__img {
  transform: scale(1.05);
}

.galeria__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-baby);
  background: rgba(137,191,237,.2);
  border: 1px solid rgba(137,191,237,.4);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
  width: fit-content;
}

.galeria__item-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
}

/* Frame accent on hover */
.galeria__item::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255,255,255,.0);
  border-radius: calc(var(--radius-lg) - 8px);
  transition: border-color .35s ease;
  pointer-events: none;
}

.galeria__item:hover::after {
  border-color: rgba(255,255,255,.3);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: white;
  border: none;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  border-radius: 4px;
}
.lightbox__nav {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__nav--prev { left: -70px; }
.lightbox__nav--next { right: -70px; }

@media (max-width: 768px) {
  .lightbox__nav--prev { left: 10px; background: rgba(0,0,0,0.4); }
  .lightbox__nav--next { right: 10px; background: rgba(0,0,0,0.4); }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews .section-title {
  margin-bottom: 60px;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue-baby), var(--navy));
}

.reviews__container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.reviews__rating-summary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 16px 28px;
  margin-bottom: var(--space-2xl);
}

.reviews__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.reviews__summary-text {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-align: left;
}

.reviews__score {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}

.reviews__summary-text strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews__summary-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Carousel */
.reviews-glide {
  padding: 12px 60px 60px; /* space for pagination and arrows */
}

.review-card {
  height: 100%;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-card__meta {
  flex-grow: 1;
}

.review-card__google-logo {
  margin-left: auto;
  opacity: 0.8;
}

.review-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.review-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card__stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.review-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.review-card__text--collapsible {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.review-card__text--collapsible.expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.review-card__read-more {
  background: none;
  border: none;
  color: var(--blue-baby);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  font-size: 14px;
}
.review-card__read-more:hover {
  text-decoration: underline;
}

.reviews__cta-wrap {
  text-align: center;
  margin-top: var(--space-2xl);
}
.reviews__cta-wrap .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Glide Overrides */
.glide__slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.85);
  opacity: 0.4;
}
.glide__slide--active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.glide__bullet {
  background-color: var(--gray-300);
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.glide__bullet:hover {
  background-color: var(--gray-400);
}
.glide__bullet--active {
  background-color: var(--navy);
  transform: scale(1.2);
}
.glide__arrow {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: none;
  font-size: 22px;
  font-weight: bold;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(15, 35, 86, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.glide__arrow:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(15, 35, 86, 0.4);
  background: linear-gradient(135deg, var(--navy-mid), var(--blue-light));
}

.glide__arrow--left {
  left: 0;
}

.glide__arrow--right {
  right: 0;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.localizacao {
  background: var(--white);
}

.localizacao__header {
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.localizacao__address {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
}

.localizacao__map-full {
  width: 100%;
  height: 520px;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: var(--space-2xl) var(--space-xl) 0;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: flex-start;
}

.footer__brand-top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer__logo {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer__tagline {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  font-style: italic;
}

/* Contact column */
.footer__contact-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-baby);
  margin-bottom: var(--space-md);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.35);
}

.footer__contact-item span:not(.footer__contact-label),
.footer__contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.footer__contact-item a:hover {
  color: var(--blue-baby);
}

/* Right column */
.footer__right-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.footer__link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}

.footer__link:hover { color: var(--blue-baby); }

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--blue-baby);
  color: var(--navy-dark);
  transform: translateY(-3px);
  border-color: var(--blue-baby);
}

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

.footer__bottom-link {
  color: var(--blue-baby);
  transition: opacity .2s;
}

.footer__bottom-link:hover { opacity: .8; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 40px rgba(37,211,102,.6);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(0) translateX(-8px);
  pointer-events: auto;
}

.whatsapp-float__pulse {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%; transform: translateY(-50%) translateX(-4px);
  background: var(--navy-dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) {
  .header {
    padding: 0 var(--space-md);
  }

  .header__nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-lg);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__mobile-insta {
    display: flex;
  }

  .header__social { display: none; }
}

@media (max-width: 1024px) {
  .hero__text-card {
    max-width: 100%;
  }

  .sobre__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .sobre__image-stack {
    height: 360px;
  }

  .sobre__img--main { height: 300px; }
  .sobre__img--accent { height: 200px; }

  .sobre__image-badge { left: -12px; }

  .localizacao__map-full {
    height: 400px;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
  }

  .footer__right-col {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .galeria__item--large { grid-column: 1/-1; height: 300px; }
  .galeria__item--wide { grid-column: 1/-1; }
  .galeria__item { height: 220px; }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-2xl: 48px;
  }

  .hero__text-card {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .hero__headline {
    font-size: 36px !important;
  }
  
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .hero__tag {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 10px;
    margin-bottom: 16px;
  }

  .badge {
    padding: 8px 12px;
    font-size: 12px;
  }

  .badge__icon { font-size: 18px; }

  .galeria__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-glide { padding: 0 4px 60px; }
  .reviews-glide { padding: 12px 4px 60px; }
  .glide__arrow { 
    width: 36px; height: 36px; font-size: 16px; 
    top: auto; bottom: 8px; transform: none; 
  }
  .glide__arrow--left { left: 8px; }
  .glide__arrow--right { right: 8px; }
  
  .glide__bullet {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }
  .reviews__rating-summary {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .reviews__summary-text {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .galeria__item { height: 220px; }
  .galeria__item--large { grid-column: 1; height: 240px; }
  .galeria__item--wide { grid-column: 1; }

  .reviews__nav { display: none; }

  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__links { justify-content: center; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px; height: 54px;
  }

  .sobre__image-stack { height: 280px; }
  .sobre__img--main { height: 240px; }
  .sobre__img--accent { height: 160px; }
  .sobre__image-badge { left: -8px; padding: 14px 16px; }
  .sobre__image-badge-num { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-wrap: wrap; gap: var(--space-lg); justify-content: center; }
  .hero__stat-divider { display: none; }
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) {
  .header {
    padding: 0 var(--space-md);
  }

  .header__nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-lg);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__mobile-insta {
    display: flex;
  }

  .header__social { display: none; }
}

@media (max-width: 1024px) {
  .hero__text-card {
    max-width: 100%;
  }

  .sobre__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .sobre__image-stack {
    height: 360px;
  }

  .sobre__img--main { height: 300px; }
  .sobre__img--accent { height: 200px; }

  .sobre__image-badge { left: -12px; }

  .localizacao__map-full {
    height: 400px;
  }

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

  .footer__right-col {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .galeria__item--large { grid-column: 1/-1; height: 300px; }
  .galeria__item--wide { grid-column: 1/-1; }
  .galeria__item { height: 220px; }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-2xl: 48px;
  }

  .hero__text-card {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .hero__headline {
    font-size: 36px !important;
  }
  
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .hero__tag {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 10px;
    margin-bottom: 16px;
  }

  .badge {
    padding: 8px 12px;
    font-size: 12px;
  }

  .badge__icon { font-size: 18px; }

  .galeria__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-glide { padding: 0 4px 60px; }
  .reviews-glide { padding: 12px 4px 60px; }
  .glide__arrow { 
    width: 36px; height: 36px; font-size: 16px; 
    top: auto; bottom: 8px; transform: none; 
  }
  .glide__arrow--left { left: 8px; }
  .glide__arrow--right { right: 8px; }
  
  .glide__bullet {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }
  .reviews__rating-summary {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .reviews__summary-text {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .galeria__item { height: 220px; }
  .galeria__item--large { grid-column: 1; height: 240px; }
  .galeria__item--wide { grid-column: 1; }

  .reviews__nav { display: none; }

  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__links { justify-content: center; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px; height: 54px;
  }

  .sobre__image-stack { height: 280px; }
  .sobre__img--main { height: 240px; }
  .sobre__img--accent { height: 160px; }
  .sobre__image-badge { left: -8px; padding: 14px 16px; }
  .sobre__image-badge-num { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-wrap: wrap; gap: var(--space-lg); justify-content: center; }
  .hero__stat-divider { display: none; }

  .badge--bottom-left,
  .badge--top-left { display: none; }
}

@media (max-width: 768px) {
  .hero {
    background-position: 70% center;
  }
}
