/*
  FONT SYSTEM:
  - Display/Headlines: Instrument Serif — contemporary editorial serif
  - UI/Body: Space Grotesk — geometric, modern, friendly
  - Accent/Impact: Syne — bold, expressive eyebrows
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: #1C1822;
  background: #FFFFFF;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

h1, h2 { font-family: 'Instrument Serif', Georgia, serif; color: #1C1822; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); line-height: 1.05; font-weight: 400; letter-spacing: -0.02em; }
h1 em { font-style: italic; color: #F15AA5; }
h2 { font-size: clamp(1.85rem, 4vw, 3.2rem); line-height: 1.12; font-weight: 400; letter-spacing: -0.015em; }
h2 em { font-style: italic; color: #5DB6E6; }
h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.125rem, 2vw, 1.5rem); line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; color: #1C1822; }
.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; border-radius: 1px; display: inline-block; }
.eyebrow-blue { color: #5DB6E6; }
.eyebrow-blue::before { background: #5DB6E6; }
.eyebrow-pink { color: #F15AA5; }
.eyebrow-pink::before { background: #F15AA5; }
.eyebrow-white { color: rgba(255,255,255,0.7); }
.eyebrow-white::before { background: rgba(255,255,255,0.5); }
.body-large { font-size: 1.125rem; line-height: 1.7; color: #6B6670; }
.body-regular { font-size: 1rem; line-height: 1.65; color: #6B6670; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.section-padding { padding: clamp(72px, 10vw, 120px) 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: 9999px; padding: 14px 32px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #5DB6E6; color: #FFF; box-shadow: 0 4px 14px rgba(93,182,230,0.25); }
.btn-primary:hover { background: #4AA3D3; box-shadow: 0 8px 24px rgba(93,182,230,0.35); }
.btn-gradient { background: linear-gradient(135deg, #5DB6E6 0%, #F15AA5 100%); color: #FFF; box-shadow: 0 4px 20px rgba(241,90,165,0.25); }
.btn-gradient:hover { box-shadow: 0 8px 30px rgba(241,90,165,0.35); }
.btn-secondary { background: transparent; color: #1C1822; border: 1.5px solid #E6E3E8; }
.btn-secondary:hover { background: #F7F4F8; border-color: #D1CED4; }
.btn-hero-secondary { background: rgba(255,255,255,0.15); color: #FFFFFF; border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }
.btn-on-dark { background: #FFFFFF; color: #2A2530; }
.btn-on-dark:hover { background: #F7F4F8; }
.btn-small { padding: 10px 24px; font-size: 0.85rem; }
.cta-link {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.875rem;
  color: #5DB6E6; transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 6px; position: relative;
}
.cta-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: #5DB6E6; transition: width 0.3s ease; }
.cta-link:hover::after { width: 100%; }
.cta-link:hover { color: #4AA3D3; }

/* ===== FLOATING PILL NAV ===== */
.nav-wrapper {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 1000;
  width: calc(100% - 40px); max-width: 1200px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.8); -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-radius: 9999px; border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  padding: 8px 12px 8px 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Hero-transparent state */
.nav-wrapper.hero-mode {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-wrapper.hero-mode .nav-logo { color: #FFFFFF; }
.nav-wrapper.hero-mode .nav-item > a,
.nav-wrapper.hero-mode .nav-item > button { color: rgba(255,255,255,0.85); }
.nav-wrapper.hero-mode .nav-item > a:hover,
.nav-wrapper.hero-mode .nav-item > button:hover { color: #FFFFFF; background: rgba(255,255,255,0.12); }
.nav-wrapper.hero-mode .nav-item svg.chevron { stroke: rgba(255,255,255,0.6); }
.nav-wrapper.hero-mode .hamburger span { background: #FFFFFF; }
.nav-wrapper.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  border-color: rgba(255,255,255,0.6);
}
.nav-wrapper.scrolled .nav-logo { color: #F15AA5; }
.nav-wrapper.scrolled .nav-item > a,
.nav-wrapper.scrolled .nav-item > button { color: #3D3842; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 48px; }
.nav-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.35rem; font-weight: 400; color: #F15AA5; font-style: italic;
  padding-right: 16px; border-right: 1px solid rgba(0,0,0,0.08); margin-right: 8px; white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-wrapper.hero-mode .nav-logo { border-right-color: rgba(255,255,255,0.15); }
.nav-logo { position: relative; width: 160px; height: 44px; display: flex; align-items: center; justify-content: center; }
.nav-logo img { position: absolute; height: 100%; width: 100%; object-fit: contain; object-position: center center; }
.nav-wrapper.hero-mode .logo-white { display: block !important; }
.nav-wrapper.hero-mode .logo-black { display: none !important; }
.nav-wrapper.scrolled .logo-white { display: none !important; }
.nav-wrapper.scrolled .logo-black { display: block !important; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; font-weight: 500; color: #3D3842;
  transition: all 0.2s ease; display: flex; align-items: center; gap: 3px; padding: 8px 12px; border-radius: 9999px;
}
.nav-item > a:hover, .nav-item > button:hover { background: rgba(93,182,230,0.08); color: #5DB6E6; }
.nav-item svg.chevron { width: 12px; height: 12px; transition: transform 0.2s ease; opacity: 0.5; }
.nav-item:hover svg.chevron { transform: rotate(180deg); opacity: 1; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FFFFFF; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px; min-width: 200px; opacity: 0; visibility: hidden;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1); z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 16px; font-size: 0.85rem; font-weight: 500; color: #3D3842; border-radius: 10px; transition: all 0.15s ease; }
.dropdown a:hover { background: rgba(93,182,230,0.08); color: #5DB6E6; }
.dropdown a.highlight { color: #F15AA5; font-weight: 600; }
.nav-cta { margin-left: 4px; display: flex; align-items: center; gap: 8px; }
.nav-social { display: flex; align-items: center; gap: 4px; margin-left: 4px; }
.nav-social a {
  display: flex; width: 32px; height: 32px; align-items: center; justify-content: center;
  border-radius: 50%; color: #6B6670; background: rgba(0,0,0,0.05); transition: all 0.25s ease;
}
.nav-social a:hover { color: #FFFFFF; background: linear-gradient(135deg, #5DB6E6, #F15AA5); transform: translateY(-1px); }
.nav-social svg { width: 15px; height: 15px; }
.nav-wrapper.hero-mode .nav-social a { color: #FFFFFF; background: rgba(255,255,255,0.18); }
.nav-wrapper.hero-mode .nav-social a:hover { color: #FFFFFF; background: linear-gradient(135deg, #5DB6E6, #F15AA5); }
.btn-gradient-nav {
  display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 9999px;
  background: linear-gradient(135deg, #5DB6E6, #F15AA5); color: #FFFFFF;
  font-size: 0.82rem; font-weight: 600; transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(241,90,165,0.25);
}
.btn-gradient-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(241,90,165,0.35); }
.hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border-radius: 50%; }
.hamburger:hover { background: rgba(93,182,230,0.08); }
.hamburger span { display: block; width: 18px; height: 1.5px; background: #3D3842; border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: min(360px, 85vw); height: 100vh;
  background: #FFFFFF; box-shadow: -16px 0 48px rgba(0,0,0,0.1); padding: 80px 32px 32px;
  overflow-y: auto; transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1); z-index: 1001; border-radius: 24px 0 0 24px;
}
.mobile-menu.open { right: 0; }
.mobile-menu .mobile-nav-item { border-bottom: 1px solid #F2F0F4; }
.mobile-menu .mobile-nav-item > a, .mobile-menu .mobile-nav-item > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 0; font-size: 1.05rem; font-weight: 500; color: #3D3842;
}
.mobile-menu .mobile-dropdown { display: none; padding: 0 0 16px 16px; }
.mobile-menu .mobile-dropdown.open { display: block; }
.mobile-menu .mobile-dropdown a { display: block; padding: 10px 0; font-size: 0.95rem; color: #6B6670; }
.mobile-menu .mobile-dropdown a:hover { color: #5DB6E6; }
.mobile-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #F7F4F8; transition: background 0.2s; }
.mobile-close:hover { background: #E6E3E8; }
.mobile-close svg { width: 18px; height: 18px; stroke: #3D3842; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(28,24,34,0.4); backdrop-filter: blur(4px); z-index: 1000; }
.mobile-overlay.open { display: block; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav-wrapper { padding: 8px 16px 8px 24px; }
}
@media (max-width: 640px) { .nav-wrapper { top: 12px; } }

/* ===== HERO — FULLSCREEN PARALLAX ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* PARALLAX LAYER — moves slower than scroll */
  will-change: transform;
}
.hero-bg-image {
  width: 100%;
  height: 120%; /* Extra height for parallax travel */
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  top: -10%;
  left: 0;
}
/* Placeholder gradient when no real photo is loaded */
.hero-bg-placeholder {
  width: 100%; height: 120%;
  position: absolute; top: -10%; left: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='0' x2='1440' y2='900' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23e8ddd5'/%3E%3Cstop offset='.5' stop-color='%23f0e6df'/%3E%3Cstop offset='1' stop-color='%23f5ebe4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1440' height='900'/%3E%3Ccircle cx='400' cy='350' r='200' fill='%23F15AA5' opacity='.06'/%3E%3Ccircle cx='1000' cy='500' r='250' fill='%235DB6E6' opacity='.06'/%3E%3Ccircle cx='700' cy='200' r='150' fill='%23F15AA5' opacity='.04'/%3E%3C/svg%3E") center/cover no-repeat;
  background-color: #ede4dc;
}
/* Dark overlay for text readability */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(28, 24, 34, 0.35) 0%,
    rgba(28, 24, 34, 0.50) 50%,
    rgba(28, 24, 34, 0.65) 100%
  );
}
/* Bottom vignette for transition to next section */
.hero-vignette {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 2;
  background: linear-gradient(to top, #F7F4F8 0%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 clamp(20px, 5vw, 80px);
}
.hero-content h1 { color: #FFFFFF; margin-bottom: 24px; text-shadow: 0 2px 40px rgba(0,0,0,0.15); }
.hero-content h1 em { color: #F9C7DE; }
.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollHintPulse 2.5s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.5); animation: scrollBounce 2.5s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes scrollHintPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 0.9; } }

/* ===== Hero rotating brand banner ===== */
.hero-slider { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transform: scale(1.08); transition: transform 7s ease; }
.hero-slide.is-active .hero-slide-bg img { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,24,34,0.30) 0%, rgba(28,24,34,0.52) 55%, rgba(28,24,34,0.72) 100%),
    radial-gradient(120% 90% at 50% 130%, color-mix(in srgb, var(--accent) 50%, transparent) 0%, transparent 62%);
}
.hero-slide-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 clamp(20px,5vw,80px); max-width: 880px; margin: 0 auto;
}
.hero-slide-content .eyebrow { margin-bottom: 18px; }
.hero-slide-content h1 { color: #fff; margin-bottom: 22px; max-width: 820px; text-shadow: 0 2px 40px rgba(0,0,0,0.28); }
.hero-slide-content h1 em { color: #fff; font-style: italic; }
.hero-slide-content .subtitle {
  font-size: clamp(1rem,2vw,1.18rem); color: rgba(255,255,255,0.86);
  line-height: 1.7; max-width: 580px; margin: 0 auto 34px;
}
.btn-brand { background: var(--accent); color: #fff; box-shadow: 0 6px 22px color-mix(in srgb, var(--accent) 42%, transparent); }
.btn-brand:hover { filter: brightness(1.07); transform: translateY(-1px); }
/* entrance animation for active slide content */
.hero-slide.is-active .hero-slide-content > * { animation: heroSlideUp 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.hero-slide.is-active .hero-slide-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-slide.is-active .hero-slide-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-slide.is-active .hero-slide-content > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes heroSlideUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
/* dots */
.hero-dots { position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.3s ease; cursor: pointer; }
.hero-dots button.is-active { background: #fff; width: 28px; border-radius: 6px; }
/* arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  color: #fff; transition: background 0.25s ease; cursor: pointer;
}
.hero-arrow:hover { background: rgba(255,255,255,0.26); }
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow-prev { left: clamp(12px,3vw,32px); }
.hero-arrow-next { right: clamp(12px,3vw,32px); }
@media (max-width: 768px) {
  .hero-arrow { display: none; }
  .hero-dots { bottom: 74px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide-bg img { transition: none; transform: scale(1); }
  .hero-slide.is-active .hero-slide-content > * { animation: none; }
}

/* Image suggestion overlay for hero */
.hero-img-suggestion {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1; text-align: center; color: rgba(255,255,255,0.35);
  font-size: 0.75rem; font-weight: 500; max-width: 400px; line-height: 1.6;
  pointer-events: none;
}
.hero-img-suggestion .img-source-tag {
  display: inline-block; margin-top: 8px; padding: 4px 14px;
  background: rgba(255,255,255,0.08); border-radius: 9999px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-buttons { flex-direction: column; padding: 0 20px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-scroll-hint { bottom: 24px; }
  .hero-vignette { height: 160px; }
}

/* ===== FAIXA NOSSAS MARCAS ===== */
.brand-strip { background: #FFFFFF; border-bottom: 1px solid #F0EDF2; padding: 26px 0; }
.brand-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px 40px; }
.brand-strip-label { font-size: 0.95rem; font-weight: 500; color: #9A949F; letter-spacing: 0.01em; white-space: nowrap; }
.brand-strip-divider { width: 1px; height: 34px; background: #E4E0E8; }
.brand-strip-logos { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.brand-logo-btn {
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: none; border: none; padding: 8px 4px; position: relative;
}
.brand-logo-btn::after {
  content: ''; position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #5DB6E6, #F15AA5);
  transition: width 0.3s ease;
}
.brand-logo-btn img {
  height: 46px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1); opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.brand-logo-btn:hover img { filter: grayscale(0); opacity: 0.85; transform: translateY(-2px); }
.brand-logo-btn.is-active img { filter: grayscale(0); opacity: 1; }
.brand-logo-btn.is-active::after { width: 70%; }
@media (max-width: 768px) {
  .brand-strip-divider { display: none; }
  .brand-strip-logos { gap: 12px 24px; }
  .brand-logo-btn img { height: 36px; max-width: 110px; }
}

/* ===== VÍDEO INSTITUCIONAL ===== */
.video-section { background: #FFFFFF; }
.video-header { text-align: center; margin-bottom: 48px; }
.video-header h2 { margin-top: 12px; }
.video-frame {
  position: relative; width: 100%; max-width: 940px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(28,24,34,0.18); background: #1C1822;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.video-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(28,24,34,0.05), rgba(28,24,34,0.30));
  transition: opacity 0.3s ease;
}
.video-frame.is-playing::after { opacity: 0; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 84px; height: 84px; border-radius: 50%; cursor: pointer;
  background: linear-gradient(135deg, #5DB6E6, #F15AA5); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(241,90,165,0.45); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-play:hover { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 14px 38px rgba(241,90,165,0.55); }
.video-play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-frame.is-playing .video-poster, .video-frame.is-playing .video-play { display: none; }
@media (max-width: 640px) {
  .video-header { margin-bottom: 32px; }
  .video-frame { border-radius: 16px; }
}

/* ===== SOBRE ===== */
.sobre { background: #F7F4F8; }
.sobre-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-text .body-regular { max-width: 480px; margin-bottom: 32px; }
.sobre-text h2 { margin-bottom: 20px; }
.sobre-images { position: relative; height: 480px; }
.sobre-img {
  position: absolute; border-radius: 20px; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); background-size: cover; background-position: center;
}
.sobre-img:hover { transform: translateY(-4px); }
.sobre-img-1 { top: 0; left: 0; width: 60%; aspect-ratio: 1 / 1; background: linear-gradient(135deg, #E8F4FC, #F0EAEF); box-shadow: 0 12px 40px rgba(0,0,0,0.08); z-index: 1; }
.sobre-img-2 { bottom: 0; right: 0; width: 50%; aspect-ratio: 3 / 4; background: linear-gradient(135deg, #FDE8F3, #E8F4FC); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border: 4px solid #FFFFFF; z-index: 2; }
@media (max-width: 1024px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-images { height: 360px; max-width: 400px; margin: 0 auto; }
}

/* Image suggestion shared */
.img-suggestion {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; text-align: center; gap: 8px;
}
.img-suggestion svg { width: 32px; height: 32px; opacity: 0.3; }
.img-suggestion .img-hint { font-size: 0.7rem; font-weight: 500; color: #A09BA5; line-height: 1.4; max-width: 160px; }
.img-suggestion .img-source { font-size: 0.6rem; font-weight: 600; color: #D1CED4; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; padding: 3px 10px; background: rgba(0,0,0,0.03); border-radius: 9999px; }

/* ===== MARCAS ===== */
.marcas { background: #FFFFFF; }
.marcas-header { text-align: center; margin-bottom: 56px; }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; max-width: 1100px; margin: 0 auto; }
.brand-card { background: #FFFFFF; border-radius: 28px; border: 1px solid #ECE9EE; overflow: hidden; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; }
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(20, 20, 40, 0.08); border-color: transparent; }
.brand-card-image { height: 320px; width: 100%; position: relative; overflow: hidden; }
.brand-card-image img { transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.brand-card:hover .brand-card-image img { transform: scale(1.04); }
.brand-card-body { padding: 40px 44px 44px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.brand-logo { height: 56px; width: auto; max-width: 200px; object-fit: contain; object-position: left center; }
.brand-card-body .body-regular { margin: 0; color: #5A5564; }
.brand-card-body .cta-link { margin-top: auto; }
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; max-width: 480px; gap: 28px; } .brand-card-image { height: 260px; } .brand-card-body { padding: 32px 32px 36px; } }

/* ===== LOJAS ===== */
.lojas { background: #FFFFFF; }
.lojas-header { text-align: center; margin-bottom: 56px; }
.lojas-header .body-large { max-width: 520px; margin: 16px auto 0; }
.loja-destaque {
  position: relative; border-radius: 24px; overflow: hidden; margin-bottom: 20px;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
  background: #f8f5f0;
}
.loja-destaque-img { position: relative; overflow: hidden; }
.loja-destaque-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loja-destaque-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 48px;
}
.loja-destaque-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #5DB6E6, #F15AA5); color: #FFFFFF;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 9999px; margin-bottom: 20px; width: fit-content;
}
.loja-destaque-content h3 {
  font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: #1C1822; margin-bottom: 16px; line-height: 1.15;
}
.loja-destaque-content h3 em { font-style: italic; color: #F15AA5; }
.loja-destaque-content p { font-size: 0.95rem; color: #6B6670; line-height: 1.7; margin-bottom: 28px; }
.loja-destaque-content .btn-visitar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 9999px; font-weight: 600; font-size: 0.88rem;
  background: #1C1822; color: #FFFFFF; transition: all 0.3s ease; width: fit-content;
}
.loja-destaque-content .btn-visitar:hover { background: #3D3842; transform: translateY(-2px); }
.lojas-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loja-card {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 280px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.loja-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loja-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.loja-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.25) 65%, transparent 100%);
}
.loja-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px 24px;
  z-index: 2; color: #FFFFFF;
}
.loja-info h3 {
  font-family: 'Instrument Serif', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 6px;
  color: #FFFFFF; text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.loja-info p { font-size: 0.85rem; color: rgba(255,255,255,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
@media (max-width: 768px) {
  .loja-destaque { grid-template-columns: 1fr; min-height: auto; }
  .loja-destaque-img { min-height: 300px; }
  .loja-destaque-content { padding: 36px 24px; }
  .lojas-secondary { grid-template-columns: 1fr; }
}

/* ===== COMERCIAL ===== */
.comercial {
  background: linear-gradient(135deg, #1C1822 0%, #2A2530 100%);
  position: relative; overflow: hidden;
}
.comercial::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(241,90,165,0.12) 0%, transparent 70%); pointer-events: none;
}
.comercial::after {
  content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(93,182,230,0.1) 0%, transparent 70%); pointer-events: none;
}
.comercial-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.comercial-content { text-align: left; }
.gradient-accent { width: 48px; height: 3px; background: linear-gradient(90deg, #5DB6E6, #F15AA5); border-radius: 2px; margin-bottom: 24px; }
.comercial h2 { color: #FFFFFF; margin-bottom: 16px; }
.comercial h2 em { color: #F15AA5; }
.comercial .body-large { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; margin-bottom: 36px; }
.comercial-image {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
}
.comercial-image img { width: 100%; height: 100%; object-fit: cover; }
.comercial-stats-inline {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.stat-inline { text-align: center; padding: 0 clamp(16px, 3vw, 40px); }
.stat-inline .stat-number {
  display: block; font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400;
  background: linear-gradient(135deg, #5DB6E6, #F15AA5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2;
}
.stat-inline .stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 6px; font-weight: 500; letter-spacing: 0.02em; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.1); }
.comercial-stats-solo { justify-content: flex-start; margin-bottom: 30px; }
.stat-solo { padding-left: 0; text-align: left; }
.stat-solo .stat-number { font-size: clamp(2.4rem, 4vw, 3.2rem); }
.stat-solo .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.comercial-features { margin-bottom: 40px; }
.comercial-features-title {
  display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 18px;
}
.comercial-features-list { list-style: none; display: grid; gap: 14px; }
.comercial-features-list li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.88); font-size: 0.98rem; font-weight: 500;
}
.comercial-features-list li::before {
  content: '✓'; flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; font-size: 12px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #5DB6E6, #F15AA5); box-shadow: 0 2px 10px rgba(241,90,165,0.3);
}
@media (max-width: 1024px) {
  .comercial-stats-solo { justify-content: center; }
  .stat-solo { text-align: center; }
  .comercial-features-list { display: inline-grid; text-align: left; }
}
.comercial .btn-comprar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 9999px; font-weight: 600; font-size: 0.95rem;
  background: linear-gradient(135deg, #5DB6E6, #F15AA5); color: #FFFFFF;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(241,90,165,0.3);
}
.comercial .btn-comprar:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(241,90,165,0.4); }
@media (max-width: 1024px) {
  .comercial-inner { grid-template-columns: 1fr; gap: 40px; }
  .comercial-content { text-align: center; }
  .gradient-accent { margin: 0 auto 24px; }
}
@media (max-width: 640px) {
  .comercial-stats-inline { gap: 20px; }
  .stat-divider { display: none; }
  .stat-inline { flex: 0 0 40%; padding: 12px 0; }
}

/* ===== TRABALHE CONOSCO ===== */
.trabalhe { background: linear-gradient(135deg, #5DB6E6 0%, #F15AA5 100%); position: relative; overflow: hidden; }
.trabalhe-content { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.trabalhe h2 { color: #FFFFFF; margin-bottom: 20px; }
.trabalhe .body-large { color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.trabalhe .shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); z-index: 1; }
.trabalhe .shape-1 { width: 240px; height: 240px; top: -80px; left: 8%; animation: drift 10s ease-in-out infinite; }
.trabalhe .shape-2 { width: 140px; height: 140px; bottom: -40px; right: 12%; animation: drift 8s ease-in-out infinite reverse; }
.trabalhe .shape-3 { width: 90px; height: 90px; top: 40%; right: 6%; animation: drift 12s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(15px,-20px); } }

/* ===== FOOTER ===== */
.footer { background: #FFFFFF; padding: 72px clamp(20px, 5vw, 80px) 32px; border-top: 1px solid rgba(0,0,0,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; flex-wrap: wrap; gap: 32px; }
.footer-brand-block .nav-logo { margin-bottom: 12px; display: inline-block; font-size: 1.5rem; }
.footer-brand-block .tagline { font-size: 0.85rem; color: rgba(0,0,0,0.45); line-height: 1.6; max-width: 280px; }
.footer-nav-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(0,0,0,0.35); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(0,0,0,0.55); padding: 5px 0; transition: color 0.2s ease; }
.footer-col a:hover { color: #1C1822; }
.footer-divider { height: 1px; background: rgba(0,0,0,0.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 0.78rem; color: rgba(0,0,0,0.35); }
.footer-credentials { font-size: 0.72rem; color: rgba(0,0,0,0.3); line-height: 1.7; margin-top: 12px; max-width: 600px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(0,0,0,0.35); transition: all 0.25s ease; display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0,0,0,0.04); }
.footer-social a:hover { color: #1C1822; background: rgba(0,0,0,0.08); }
.footer-social svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .footer-top { flex-direction: column; } .footer-nav-cols { gap: 40px; } }
@media (max-width: 480px) { .footer-nav-cols { flex-direction: column; gap: 32px; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.hero-reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1) 0.3s, transform 1s cubic-bezier(0.22,1,0.36,1) 0.3s; }
.hero-reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .hero-reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg-placeholder, .hero-bg-image { top: 0; height: 100%; }
}
