/* Fonts carregadas via <link> no HTML para melhor performance */

/* ── TOKENS ── */
:root {
  --cream:       #F2EFE9;
  --cream-2:     #E8E3D8;
  --forest:      #1C2119;
  --olive:       #2E3829;
  --sage:        #6B7B5E;
  --gold:        #B8965A;
  --gold-lt:     #D4B07A;
  --white:       #FFFFFF;
  --text:        #1C2119;
  --text-muted:  #6B6B60;
  --text-lt:     rgba(242,239,233,0.75);

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter', system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 48px;
  --r-pill: 999px;

  --ease:     cubic-bezier(0.19, 1, 0.22, 1);
  --ease-std: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:      0.7s;

  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-lg: 0 30px 90px rgba(0,0,0,0.2);
  --shadow-xl: 0 50px 120px rgba(0,0,0,0.3);
}

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;overflow-x:hidden;scroll-behavior:auto}
body{
  font-family:var(--f-sans);
  background:var(--cream);
  color:var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering: optimizeSpeed;
}
body.is-loading{overflow:hidden}
img,video{max-width:100%;display:block;object-fit:cover}
img{height:auto}
a{text-decoration:none;color:inherit}

/* ── PERFORMANCE ── */
/* will-change apenas em elementos que serão animados pelo GSAP */
.hero__video,
#about-pill,
#about-float,
.about__arch img,
#bigcta-bg,
.pf-cinematic img { will-change: transform; }

/* Seções abaixo do fold: Removido content-visibility por conflito com Lenis scrollTo */

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  will-change: transform;
}
.loader__content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  padding: 10vh 2rem;
  pointer-events: none;
  gap: 3rem;
}
.loader__branding {
  text-align: center;
}
.loader__label {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 300;
  line-height: 1;
}
.loader__sub {
  display: block; margin-top: 1rem;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-lt);
}
.loader__progress {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.2rem; width: 100%; max-width: 240px;
}
.loader__pct {
  font-family: var(--f-serif);
  font-size: 3.5rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.loader__bar {
  width: 100%; height: 2px;
  background: rgba(184,150,90,0.2);
  position: relative; overflow: hidden;
  border-radius: var(--r-pill);
}
.loader__fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: var(--gold);
  box-shadow: 0 0 15px rgba(184,150,90,0.6);
}



/* ── LAYOUT ── */
.container{
  width:100%;max-width:1300px;
  margin:0 auto;padding:0 clamp(1.5rem,5vw,5rem);
}
.container--wide{max-width:1700px;}
.section{padding:clamp(7rem,14vh,12rem) 0}
.section--dark{background:var(--forest);color:var(--white)}

/* ── TYPE ── */
.it{font-family:var(--f-serif);font-style:italic;font-weight:300}
.light{color:var(--cream)!important}
.tag-line{
  display:inline-block;font-size:.7rem;font-weight:400;
  letter-spacing:.22em;text-transform:uppercase;color:var(--sage);
  margin-bottom:1.4rem;
}
.tag-line.light{color:rgba(184,150,90,.8)}
h2{
  font-family:var(--f-serif);font-size:clamp(3rem,6vw,5rem);
  line-height:1.02;letter-spacing:-.01em;font-weight:400;
  margin-bottom:2rem;
}
.body-text{
  font-size:clamp(1rem,1.4vw,1.1rem);line-height:1.75;
  color:var(--text-muted);margin-bottom:1.4rem;
}
.body-text.light,.section--dark .body-text{color:rgba(242,239,233,.6)}
.link-arrow{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:.8rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
  color:var(--sage);border-bottom:1px solid transparent;
  transition:color var(--dur) ease,border-color var(--dur) ease;
}
.link-arrow:hover{color:var(--gold);border-color:var(--gold)}
.link-arrow.light{color:rgba(255,255,255,.6)}
.link-arrow.light:hover{color:var(--gold-lt)}

/* ── HEADER ── */
.header{
  position:fixed;top:1.2rem;left:50%;transform:translateX(-50%);
  width:calc(100% - 2.5rem);max-width:1240px;z-index:900;
  transition:transform .6s var(--ease);
}
.header.hidden{transform:translateX(-50%) translateY(-130%)}

.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:.85rem 1rem .85rem 1.5rem;
  background:rgba(242,239,233,.88);
  backdrop-filter:blur(32px) saturate(1.6);
  -webkit-backdrop-filter:blur(32px) saturate(1.6);
  border:1px solid rgba(184,150,90,.25);
  border-radius:var(--r-pill);
  box-shadow:0 8px 48px rgba(0,0,0,.10),0 2px 8px rgba(0,0,0,.06);
  transition:background .5s ease,border-color .5s ease,box-shadow .5s ease;
  gap:1.5rem;
}
.header.dark-mode .header__inner{
  background:rgba(20,25,18,.88);
  border-color:rgba(184,150,90,.15);
  box-shadow:0 8px 48px rgba(0,0,0,.3);
}

.header__logo{
  display:flex;align-items:center;gap:.65rem;flex-shrink:0;
  font-family:var(--f-serif);font-size:1.1rem;letter-spacing:.12em;
  text-transform:uppercase;color:var(--forest);font-weight:400;
  transition:color .4s ease;
}
.header.dark-mode .header__logo{color:var(--cream)}
.logo-leaf { font-size: 1.1rem; line-height: 1; }
.logo-img{height:32px;width:auto;color:var(--forest);transition:color .4s ease}
.header.dark-mode .logo-img{color:var(--cream)}

.header__nav{display:flex;gap:2rem;flex:1;justify-content:center}
.nav-item{
  font-size:.75rem;font-weight:400;letter-spacing:.08em;
  color:var(--text-muted);transition:color .3s ease;position:relative;
}
.nav-item::after{
  content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;
  background:var(--gold);transition:width .4s var(--ease);
}
.nav-item:hover{color:var(--text)}
.nav-item:hover::after{width:100%}
.header.dark-mode .nav-item{color:rgba(255,255,255,.5)}
.header.dark-mode .nav-item:hover{color:var(--cream)}

.header__btn{
  flex-shrink:0;display:inline-flex;align-items:center;gap:.6rem;
  padding:.65rem 1.4rem;border-radius:var(--r-pill);
  background:var(--forest);color:#ffffff;
  font-size:.72rem;font-weight:500;letter-spacing:.07em;
  transition:background .3s ease,transform .3s ease,box-shadow .3s ease;
  white-space:nowrap;
}
.header__btn:hover{background:var(--sage);transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.header.dark-mode .header__btn{background:var(--gold);color:var(--forest)}

.header__right{display:flex;align-items:center;gap:1rem;flex-shrink:0}

.burger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;padding:6px;
}
.burger span{
  display:block;width:22px;height:1.5px;background:var(--forest);
  transition:var(--dur) var(--ease);transform-origin:center;
}
.burger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.header.dark-mode .burger span{background:var(--cream)}

/* ── MOBILE MENU ── */
.mob-menu{
  position:fixed;inset:0;z-index:800;background:var(--forest);
  opacity:0;pointer-events:none;
  transition:opacity .5s ease;
  display:flex;flex-direction:column;justify-content:center;padding:4rem;
  gap:3rem;
}
.mob-menu.open{opacity:1;pointer-events:all}
.mob-menu__nav{display:flex;flex-direction:column;gap:.5rem}
.mob-link{
  font-family:var(--f-serif);font-size:clamp(2.5rem,8vw,4rem);
  color:rgba(242,239,233,.75);font-weight:300;
  transition:color .3s ease;
}
.mob-link:hover{color:var(--gold)}
.mob-menu__bottom{display:flex;flex-direction:column;gap:1.5rem}
.mob-socials{display:flex;gap:2rem}
.mob-socials a{font-size:.8rem;letter-spacing:.12em;color:rgba(255,255,255,.3);text-transform:uppercase;transition:color .3s ease}
.mob-socials a:hover{color:var(--gold)}

/* ── HERO — Minimalist Glass Premium ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--forest);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero.ready .hero__video { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,19,13,0.6) 0%, rgba(15,19,13,0.1) 40%, rgba(15,19,13,0.65) 100%),
    linear-gradient(to right, rgba(15,19,13,0.4) 0%, transparent 60%);
}

/* topbar */
.hero__topbar {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.8rem clamp(2rem,5vw,5rem);
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
}
.hero__sep { opacity: 0.25; }
.hero__social-link {
  margin-left: auto; color: rgba(255,255,255,0.38);
  transition: color 0.4s ease; display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.15em;
}
.hero__social-link:hover { color: rgba(255,255,255,0.75); }

/* CENTER STAGE — hero main content */
.hero__main {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 clamp(2rem,5vw,5rem);
  text-align: center;
  gap: 0;
}

.hero__live-badge {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.85); margin-bottom: 2.2rem;
  opacity: 0; cursor: pointer; text-decoration: none;
  overflow: hidden;
  height: 38px; max-width: 38px;
  transition: max-width 1.2s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.hero__live-badge.expanded,
.hero__live-badge:hover {
  max-width: 500px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(184,150,90,0.5);
  box-shadow: 0 4px 20px rgba(184,150,90,0.15);
}
.hero__live-badge-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
  transition: transform 0.4s ease;
}
.hero__live-badge:hover .hero__live-badge-icon { transform: scale(1.1); }
.hero__live-badge-text {
  font-size: 0.72rem; letter-spacing: 0.05em;
  white-space: nowrap; opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
  padding-right: 1.2rem; padding-left: 0.2rem;
}
.hero__live-badge.expanded .hero__live-badge-text,
.hero__live-badge:hover .hero__live-badge-text {
  opacity: 1; transform: translateX(0);
  transition-delay: 0.3s;
}
.hero__live-badge-text strong { font-weight: 600; color: var(--white); }
.badge-arrow {
  margin-left: 0.4rem; color: var(--gold); transition: transform 0.3s ease;
}
.hero__live-badge:hover .badge-arrow { transform: translateX(3px); }

.hero__heading {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em; color: #fff;
  margin-bottom: 1.6rem;
  max-width: 780px;
}
.hero__heading em {
  font-style: italic; color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.reveal-line { display: block; overflow: hidden; line-height: 1.15; }
.reveal-line span { display: block; transform: translateY(80px); opacity: 0; }

.hero__desc {
  font-family: var(--f-sans);
  font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.52);
  margin-bottom: 2.5rem; opacity: 0;
  max-width: 440px;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex; align-items: center; gap: 1.2rem; opacity: 0;
  flex-wrap: wrap; justify-content: center;
}

/* Primary CTA — glass pill */
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--gold); color: var(--forest);
  border-radius: var(--r-pill);
  padding: 0.85rem 2rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, background 0.3s ease;
}
.hero__cta-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.4s var(--ease);
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(184,150,90,0.5);
  background: #c9a464;
}
.hero__cta:hover .hero__cta-arrow { transform: translateX(3px); }

/* Ghost CTA */
.hero__ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}
.hero__ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* BOTTOM — glass stats bar */
.hero__bottom {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  padding: 0 clamp(2rem,5vw,5rem) 2.5rem;
  opacity: 0;
}
.hero__glass-bar {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 0.9rem 2.5rem;
  gap: 0;
}
.hero__stat {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0 2rem;
}
.hero__stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-n {
  font-family: var(--f-serif);
  font-size: 1.5rem; color: #fff; line-height: 1;
  font-weight: 300;
}
.hero__stat-l {
  font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  max-width: 80px; line-height: 1.4;
}
.hero__stat-div { display: none; }

/* scroll hint — repositioned inside bottom */
.hero__scroll-wrap {
  display: flex; align-items: center; gap: 0.8rem;
  margin-left: 2rem; padding-left: 2rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
}
.scroll-label { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-track { width: 40px; height: 1px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.scroll-fill {
  position: absolute; top: 0; left: -100%; bottom: 0; width: 100%;
  background: rgba(255,255,255,0.5); animation: scrollAnim 2.2s var(--ease) infinite;
}
@keyframes scrollAnim { 0%{left:-100%} 100%{left:100%} }

/* hero label (legacy — hidden) */
.hero__label { display: none; }
.hero__left { display: contents; }
.hero__right { display: contents; }

/* ── SEGURO BANNER PREMIUM ── */
.seguro-banner {
  background: var(--cream);
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 5;
}

.banner-lux {
  display: block;
  position: relative;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  cursor: pointer;
}

.banner-lux::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--r-xl);
  z-index: 3;
  pointer-events: none;
}

.banner-lux:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.banner-lux__bg {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-lux__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  will-change: transform;
}

.banner-lux:hover .banner-lux__img {
  transform: scale(1.04);
}

.banner-lux__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,33,25,0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.banner-lux:hover .banner-lux__veil {
  opacity: 1;
}

.banner-lux__hover-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}

.banner-lux:hover .banner-lux__hover-content {
  opacity: 1;
  transform: translateY(0);
}

.banner-lux__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.banner-lux__btn i {
  color: var(--gold);
}

/* ── CLIENTS LOGO STRIP ── */
.clients-strip {
  background: var(--cream);
  padding: 3.5rem 0;
  overflow: hidden;
  position: relative;
  /* Premium subtle blend with adjacent sections */
}

/* Faixa de título discreta à esquerda, fora do marquee */
.clients-strip__label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2.5rem;
  display: block;
  width: 100%;
}

.clients-strip__track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.clients-strip__track {
  display: flex;
  align-items: center;
  gap: 6rem;
  width: max-content;           /* se auto-dimensiona com o conteúdo */
  will-change: transform;
  animation: clients-marquee 100s linear infinite;
  padding-right: 6rem; /* Ensures the gap is perfectly mirrored for the -50% loop jump */
}

.clients-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clients-strip__logo img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.5s var(--ease), opacity 0.5s var(--ease);
  display: block;
}

.clients-strip__logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Aumenta um pouco C6 Bank e Carrefour */
.clients-strip__logo img[src*="carrefour"] {
  height: 95px;
  max-width: 240px;
}

.clients-strip__logo img[src*="c6-bank"] {
  height: 95px;
  max-width: 240px;
}

.clients-strip__sep { display: none; }

/* Anima exatamente -50%: quando chega na metade (as cópias),
   o frame é idêntico ao início — loop invisível e perfeito */
@keyframes clients-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}






/* ── ABOUT ── */
.about__grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(4rem,8vw,9rem);align-items:center;
}
.about__media{position:relative;padding-bottom:5rem}

.about__arch{
  width:75%;border-radius:900px 900px 0 0;
  overflow:hidden;aspect-ratio:3/4;position:relative;
  box-shadow:var(--shadow-xl);
}
.about__arch img{width:100%;height:115%;transform-origin:center top}

.about__arch-badge{
  position:absolute;bottom:2rem;right:-3rem;
  background:var(--forest);color:var(--cream);
  padding:1.2rem 1.5rem;border-radius:var(--r-md);
  font-family:var(--f-serif);font-size:2.2rem;font-weight:300;
  line-height:1.1;box-shadow:var(--shadow-lg);min-width:130px;text-align:center;
}
.about__arch-badge span{
  display:block;font-family:var(--f-sans);font-size:.6rem;
  letter-spacing:.12em;text-transform:uppercase;
  color:rgba(242,239,233,.5);margin-top:.4rem;
}

.about__pill{
  position:absolute;bottom:-2rem;right:0;
  width:50%;border-radius:var(--r-pill);
  overflow:hidden;aspect-ratio:2/3;
  border:8px solid var(--cream);box-shadow:var(--shadow-xl);
}
.about__pill img{width:100%;height:120%}

.about__float-card{
  position:absolute;top:2rem;right:20%;
  background:var(--gold);color:var(--forest);
  padding:1.2rem 1.6rem;border-radius:var(--r-md);max-width:220px;
  box-shadow:var(--shadow-md);z-index:3;
}
.about__float-card p{
  font-family:var(--f-serif);font-size:1.05rem;font-style:italic;
  line-height:1.4;margin-bottom:.5rem;font-weight:300;
}
.about__float-card span{font-size:.65rem;letter-spacing:.1em;opacity:.65;text-transform:uppercase}

.about__text{padding-top:3rem}
.about__pills{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:2rem}
.about__pills span{
  display:inline-block;padding:.4rem 1rem;
  border:1px solid var(--sage);border-radius:var(--r-pill);
  font-size:.7rem;letter-spacing:.1em;color:var(--sage);text-transform:uppercase;
}

/* ── SERVICES (Text Grid) ── */
.services {
  padding: 8rem 0;
}
.services__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 4rem; margin-bottom: 5rem;
}
.services__header-left { flex: 1; }
.services__header-left h2 { margin-bottom: 0; }
.services__header-right { flex: 0.8; max-width: 500px; padding-bottom: 0.5rem; }

.services__grid-premium {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.svc-prem-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-xl);
  padding: 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s var(--ease), background 0.5s ease, border-color 0.5s ease;
  min-height: 260px;
}

.svc-prem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% -20%, rgba(184,150,90,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.svc-prem-card:nth-child(1) { grid-column: span 6; }
.svc-prem-card:nth-child(2) { grid-column: span 6; }
.svc-prem-card:nth-child(3) { grid-column: span 4; }
.svc-prem-card:nth-child(4) { grid-column: span 4; }
.svc-prem-card:nth-child(5) { grid-column: span 4; }
.svc-prem-card:nth-child(6) { grid-column: span 4; }
.svc-prem-card:nth-child(7) { grid-column: span 4; }
.svc-prem-card:nth-child(8) { grid-column: span 4; }

.svc-prem-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,150,90,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.svc-prem-card:hover::before {
  opacity: 1;
}

.svc-prem-bg-num {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  font-family: var(--f-serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(255,255,255,0.02);
  font-weight: 300;
  pointer-events: none;
  transition: color 0.5s ease, transform 0.8s var(--ease);
}

.svc-prem-card:hover .svc-prem-bg-num {
  color: rgba(184,150,90,0.06);
  transform: scale(1.05) translate(-10px, 10px);
}

.svc-prem-top {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.svc-prem-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(184,150,90,0.5);
  transition: transform 0.4s var(--ease);
}

.svc-prem-card:hover .svc-prem-dot {
  transform: scale(1.5);
}

.svc-prem-card h4 {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.svc-prem-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 95%;
  position: relative;
  z-index: 2;
}

/* ── INSPIRATION GALLERY ── */
.inspire-gallery {
  background: var(--cream);
  padding: 8rem 0;
}

.inspire__top {
  text-align: center;
  margin-bottom: 5rem;
}

.inspire__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.inspire__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.inspire__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.inspire__img:hover img {
  transform: scale(1.05);
}

.inspire__img--1 { grid-column: 1 / 6; aspect-ratio: 4/5; }
.inspire__img--2 { grid-column: 6 / 9; aspect-ratio: 3/4; transform: translateY(60px); }
.inspire__img--3 { grid-column: 9 / 13; aspect-ratio: 4/5; transform: translateY(-30px); }
.inspire__img--4 { grid-column: 3 / 11; aspect-ratio: 16/9; margin-top: 6rem; }

/* ── PREMIUM CARE ── */
.care {
  background: var(--cream);
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}
.care__header {
  text-align: center;
  margin-bottom: 6rem;
}
.care__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.care-card {
  display: flex;
  flex-direction: column;
}
.care-card--offset {
  margin-top: 6rem;
}
.care-card__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  position: relative;
  margin-bottom: 2rem;
}
.care-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.care-card:hover .care-card__media img {
  transform: scale(1.05);
}
.care-card__content {
  padding-right: 2rem;
}
.care-card__num {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.care-card h3 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 400;
}
.care-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}



/* ── PORTFOLIO — Magazine Style ── */
.portfolio { padding: 8rem 0 0; background: var(--forest); }

/* Header Glassmorphism */
.pf-header-glass {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
  padding-top: 4rem;
}

.pf-glass-box {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 4rem 5rem;
  text-align: center;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.pf-glass-box::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(circle, rgba(184,150,90,0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.pf-glass-box__top {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-pill);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.pf-glass-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 10px #ff3b30;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 59, 48, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.pf-glass-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-family: var(--f-serif);
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pf-glass-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 1;
}

.pf-glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gold);
  color: var(--forest);
  padding: 1rem 2rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  z-index: 1;
}

.pf-glass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(184,150,90,0.3);
}

/* Split Panels */
.pf-panel {
  display: flex; height: 75vh; min-height: 520px;
}
.pf-panel--rev { flex-direction: row-reverse; }

.pf-panel__img {
  position: relative; overflow: hidden;
  flex: 1.8;
}
.pf-panel__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.pf-panel:hover .pf-panel__img img { transform: scale(1.04); }

.pf-panel__text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem; background: var(--olive);
  position: relative;
}
.pf-panel__text::before {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.06);
}
.pf-panel__text--right::before { left: 0; }
.pf-panel__text--left::before { right: 0; }

.pf-panel__num {
  font-family: var(--f-serif); font-size: 5rem; font-weight: 300; line-height: 1;
  color: rgba(184,150,90,0.12); display: block; margin-bottom: 2rem;
  position: absolute; top: 2.5rem; right: 2.5rem;
}
.pf-panel--rev .pf-panel__num { right: auto; left: 2.5rem; }
.pf-panel__cat {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.pf-panel__title {
  font-family: var(--f-serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #fff; font-weight: 400; line-height: 1.1; margin-bottom: 1.5rem;
}
.pf-panel__desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7;
  margin-bottom: 2rem; max-width: 340px;
}
.pf-panel__tags {
  display: flex; gap: 1rem;
}
.pf-panel__tags span {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); padding: 0.35rem 1rem;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-pill);
}

/* Cinematic full-bleed */
.pf-cinematic {
  position: relative; height: 85vh; min-height: 550px; overflow: hidden;
  margin: 4px 0;
}
.pf-cinematic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.pf-cinematic:hover img { transform: scale(1.03); }
.pf-cinematic__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,33,25,0.88) 0%, rgba(28,33,25,0.1) 60%);
}
.pf-cinematic__text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(2rem,5vw,5rem);
}
.pf-cinematic__meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.pf-cinematic__meta span:first-child { color: var(--gold); }
.pf-cinematic__meta span:last-child { color: rgba(255,255,255,0.4); }
.pf-cinematic__text h3 {
  font-family: var(--f-serif); font-size: clamp(3.5rem, 7vw, 7rem);
  color: #fff; font-weight: 300; line-height: 0.95; margin-bottom: 1.5rem;
}
.pf-cinematic__text p {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Mosaic Grid */
.pf-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 340px 340px;
  gap: 4px; margin: 4px 0;
}
.pf-mosaic__item {
  position: relative; overflow: hidden; cursor: pointer;
}
.pf-mosaic__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.pf-mosaic__item:hover img { transform: scale(1.06); }
.pf-mosaic__item--tall { grid-column: span 1; grid-row: span 2; }
.pf-mosaic__item--sm   { grid-column: span 1; grid-row: span 1; }
.pf-mosaic__item--wide { grid-column: span 2; grid-row: span 1; }

.pf-mosaic__info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(28,33,25,0.85), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}
.pf-mosaic__item:hover .pf-mosaic__info { opacity: 1; transform: translateY(0); }
.pf-mosaic__info span {
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.3rem;
}
.pf-mosaic__info h4 {
  font-family: var(--f-serif); font-size: 1.2rem; color: #fff; font-weight: 400;
}

/* Strip carousel */
.pf-strip {
  padding: 5rem 0 6rem;
}
.pf-strip__top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.pf-strip__top h3 {
  font-family: var(--f-serif); font-size: 2rem; font-weight: 300;
}
.pf-strip__nav { display: flex; gap: 0.8rem; }



/* Rows */
.portfolio__row {
  display: flex; height: 70vh; min-height: 500px; gap: 4px; overflow: hidden;
}
.portfolio__row--full { height: 80vh; min-height: 550px; }

/* Cells */
.portfolio__cell {
  position: relative; overflow: hidden; flex-shrink: 0;
  cursor: pointer;
}
.portfolio__cell--xl { flex: 2; }
.portfolio__cell--sm { flex: 1; }
.portfolio__cell--full { flex: 1; }

.portfolio__media {
  position: absolute; inset: 0;
}
.portfolio__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.portfolio__cell:hover .portfolio__media img {
  transform: scale(1.06);
}

.portfolio__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,33,25,0.9) 0%, rgba(28,33,25,0.1) 60%);
  transition: opacity 0.5s ease;
}
.portfolio__veil--lighter {
  background: linear-gradient(to top, rgba(28,33,25,0.85) 0%, rgba(28,33,25,0.2) 50%, transparent 100%);
}
.portfolio__cell:hover .portfolio__veil { opacity: 1; }

.portfolio__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem; z-index: 2;
  transform: translateY(12px); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.5s ease;
}
.portfolio__cell:hover .portfolio__label {
  transform: translateY(0); opacity: 1;
}
.portfolio__label--center {
  text-align: center; left: 50%; transform: translate(-50%, 12px); right: auto; width: 100%;
}
.portfolio__cell:hover .portfolio__label--center {
  transform: translate(-50%, 0); opacity: 1;
}
.portfolio__label-meta {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem;
}
.portfolio__num {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--gold); font-family: var(--f-sans);
}
.portfolio__cat {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.portfolio__label h3 {
  font-family: var(--f-serif); font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: #fff; font-weight: 400; margin-bottom: 0.3rem; line-height: 1.1;
}
.portfolio__label p {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Carousel */
.portfolio__more {
  margin-top: 6rem; padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.portfolio__more-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.portfolio__more-top h3 {
  font-family: var(--f-serif); font-size: 2rem; font-weight: 300;
}
.portfolio__more-nav { display: flex; gap: 0.8rem; }
.pnav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.pnav-btn:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }

.portfolio__carousel {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none;
  padding-bottom: 1rem;
}
.portfolio__carousel::-webkit-scrollbar { display: none; }
.pcar-item {
  flex-shrink: 0; width: 320px; scroll-snap-align: start; cursor: pointer;
}
.pcar-item__media {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; margin-bottom: 1rem;
}
.pcar-item__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.pcar-item:hover .pcar-item__media img { transform: scale(1.05); }
.pcar-item__info span {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); display: block; margin-bottom: 0.4rem;
}
.pcar-item__info h4 {
  font-family: var(--f-serif); font-size: 1.3rem; color: #fff;
  font-weight: 400;
}

/* ── TRANSFORMAÇÃO ── */
.transform {
  background: var(--cream-2);
  overflow: hidden;
}
.transform__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.transform__text {
  padding: 4rem 0;
}
.transform__num {
  font-family: var(--f-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(184,150,90,0.3);
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
}
.transform__text h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--forest);
}
.transform__labels {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(28,33,25,0.1);
  padding-top: 2rem;
}
.transform__labels span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(28,33,25,0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
}
.transform__media {
  position: relative;
}
.transform__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.transform__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transform__glass-card {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  background: rgba(242,239,233,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 1.5rem 2rem;
  border-radius: var(--r-lg);
  max-width: 300px;
  box-shadow: var(--shadow-lg);
}
.transform__glass-card p {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--forest);
}

/* ── CEO ── */
.ceo{position:relative;overflow:hidden}
.ceo__noise{
  position:absolute;inset:0;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E") repeat;
}
.ceo__grid{
  display:grid;grid-template-columns:1fr 1.2fr;
  gap:clamp(4rem,8vw,9rem);align-items:center;
}
.ceo__img-col{position:relative}
.ceo__img-frame{
  border-radius:var(--r-xl) var(--r-xl) 0 var(--r-xl);
  overflow:hidden;aspect-ratio:3/4;max-width:480px;
  box-shadow:var(--shadow-xl);
}
.ceo__img-frame img{width:100%;height:100%}
.ceo__img-label{
  position:absolute;top:2rem;right:-1.5rem;
  background:var(--gold);border-radius:var(--r-md);
  padding:1rem 1.5rem;
}
.ceo__img-year{
  font-family:var(--f-serif);font-size:1.8rem;font-weight:300;
  color:var(--forest);display:block;
}
.ceo__quote-card{
  position:absolute;bottom:-1.5rem;right:-2rem;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(16px);
  padding:1.5rem 2rem;border-radius:var(--r-lg);max-width:280px;
}
.ceo__quote-card p{
  font-family:var(--f-serif);font-size:1.1rem;font-style:italic;
  color:var(--cream);line-height:1.5;font-weight:300;
}

.ceo__credentials{
  display:flex;flex-wrap:wrap;gap:.8rem;margin-bottom:2.5rem;
}
.ceo__credentials span{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.4rem 1.1rem;background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);border-radius:var(--r-pill);
  font-size:.7rem;letter-spacing:.08em;color:rgba(242,239,233,.6);
}
.ceo__credentials span i{color:var(--gold)}

.ceo__valores{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin:2.5rem 0;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:2rem;
}
.valor-item h4{
  font-family:var(--f-serif);font-size:1.1rem;font-weight:400;
  color:var(--gold);margin-bottom:.5rem;
}
.valor-item p{font-size:.82rem;line-height:1.6;color:rgba(242,239,233,.45)}

/* ── TESTIMONIALS ── */
.test-header{text-align:center;margin-bottom:4rem}
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.test-card{
  background:var(--cream-2);border:1px solid rgba(107,107,96,.15);
  border-radius:var(--r-lg);padding:2.5rem;
  transition:transform .4s ease,box-shadow .4s ease;
}
.test-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.test-stars{color:var(--gold);margin-bottom:1.2rem;letter-spacing:.1em}
.test-card p{
  font-family:var(--f-serif);font-size:1.15rem;
  font-style:italic;font-weight:300;line-height:1.6;
  color:var(--text);margin-bottom:1.5rem;
}
.test-author{display:flex;align-items:center;gap:1rem}
.test-ava{
  width:42px;height:42px;border-radius:50%;
  background:var(--sage);display:flex;align-items:center;justify-content:center;
  font-family:var(--f-serif);font-size:1.2rem;color:#fff;flex-shrink:0;
}
.test-author strong{display:block;font-size:.88rem;font-weight:500;margin-bottom:.2rem}
.test-author span{font-size:.72rem;color:var(--text-muted)}

/* ── BIG CTA ── */
.bigcta{
  position:relative;height:100vh;min-height:700px;
  display:flex;align-items:center;justify-content:center;text-align:center;
  overflow:hidden;
}
.bigcta__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 120%;
  z-index: 0;
}
.bigcta__video{width:100%;height:100%;object-fit:cover}
.bigcta__veil{
  position:absolute;inset:0;
  background:rgba(28,33,25,.72);
}
.bigcta__content{position:relative;z-index:1;padding:2rem;max-width:750px}
.bigcta h2{font-size:clamp(3rem,7vw,5.5rem);margin-bottom:1.5rem}
.bigcta__acts{display:flex;gap:1.2rem;justify-content:center;flex-wrap:wrap;margin-top:2.5rem}
.btn-wpp{
  display:inline-flex;align-items:center;gap:.7rem;
  padding:.95rem 2.2rem;background:#25D366;color:#fff;
  border-radius:var(--r-pill);font-size:.85rem;font-weight:500;
  transition:background .3s,transform .3s,box-shadow .3s;
}
.btn-wpp:hover{background:#1fba59;transform:translateY(-3px);box-shadow:0 16px 40px rgba(37,211,102,.4)}
.btn-ghost{
  display:inline-flex;align-items:center;
  padding:.95rem 2.2rem;border:1px solid rgba(255,255,255,.35);
  color:rgba(255,255,255,.8);border-radius:var(--r-pill);
  font-size:.85rem;transition:all .3s ease;
}
.btn-ghost:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff}

/* ── FOOTER ── */
.footer{background:var(--forest);padding:6rem 0 3rem;color:var(--cream)}
.footer__grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:4rem;padding-bottom:5rem;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer__brand h3{
  font-family:var(--f-serif);font-size:2rem;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1rem;
}
.footer__brand p{font-size:.88rem;color:rgba(242,239,233,.4);line-height:1.65;margin-bottom:1.5rem}
.footer__social{display:flex;gap:1.2rem}
.footer__social a{
  width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  font-size:.9rem;color:rgba(255,255,255,.4);
  transition:all .3s ease;
}
.footer__social a:hover{border-color:var(--gold);color:var(--gold)}
.footer__col h4{
  font-size:.6rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(255,255,255,.25);margin-bottom:1.5rem;
}
.footer__col a,.footer__col p{
  display:block;font-size:.88rem;color:rgba(255,255,255,.5);
  line-height:1.8;transition:color .3s ease;margin-top:.2rem;
}
.footer__col a:hover{color:var(--gold-lt)}
.footer__bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:2.5rem;font-size:.75rem;color:rgba(255,255,255,.2);
  flex-wrap:wrap;gap:1rem;
}

/* ── WHATSAPP FLOAT ── */
.wpp-float{
  position:fixed;bottom:2rem;right:2rem;z-index:500;
  width:54px;height:54px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:1.4rem;
  box-shadow:0 8px 30px rgba(37,211,102,.4);
  transition:transform .3s ease,box-shadow .3s ease;
}
.wpp-float:hover{transform:scale(1.1);box-shadow:0 14px 40px rgba(37,211,102,.55)}

/* ── PROTECTION GREENSY ── */
.protection {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.protection::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(184,150,90,0.05), transparent 60%);
  z-index: 0; pointer-events: none;
}
.protection__header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative; z-index: 1;
}
.protection__header h2 { margin-bottom: 1.5rem; }
.protection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
  position: relative; z-index: 1;
}
.prot-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
}
.prot-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease);
}
.prot-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.prot-card:hover::before {
  transform: scaleX(1);
}
.prot-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(184,150,90,0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.5s var(--ease), background 0.5s ease, color 0.5s ease;
}
.prot-card:first-child {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.prot-card:first-child::before {
  transform: scaleX(1);
}
.prot-card:first-child .prot-card__icon {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--white);
}
.prot-card:hover .prot-card__icon {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--white);
}
.prot-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prot-card__content h3 {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.prot-card__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.prot-card__benefits {
  list-style: none; margin-bottom: 3rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.prot-card__benefits li {
  font-size: 0.95rem; color: var(--forest);
  display: flex; align-items: center; gap: 1rem;
}
.prot-card__benefits li i {
  color: var(--gold); font-size: 0.85rem;
}
.prot-card__content .link-arrow { 
  margin-top: auto; 
  align-self: flex-start; 
  color: var(--sage); 
  font-weight: 600;
  letter-spacing: 0.15em;
}
.prot-card__content .link-arrow:hover { color: var(--gold); }

.protection__banner {
  background: linear-gradient(135deg, rgba(184,150,90,0.1), rgba(184,150,90,0.02));
  border: 1px solid rgba(184,150,90,0.2);
  border-radius: var(--r-md);
  padding: 3.5rem;
  text-align: center;
  margin-bottom: 6rem;
  position: relative; z-index: 1;
}
.protection__banner-title {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
  font-style: italic;
}
.protection__banner-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.protection__cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.protection__cta h3 {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.protection__cta-quote {
  margin-top: 3rem;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
  opacity: 0.8;
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up{
  opacity:0;transform:translateY(40px);
  transition:opacity .8s var(--ease),transform .8s var(--ease);
}
.reveal-up.in{opacity:1;transform:translateY(0)}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .services__grid-premium { display: flex; flex-direction: column; }
  .svc-prem-card { padding: 2.5rem; }
  .inspire__img--1, .inspire__img--2, .inspire__img--3, .inspire__img--4 { 
    grid-column: 1 / -1; 
    aspect-ratio: 16/9; 
    transform: none; 
    margin-top: 0;
  }
  .irrig-cards { grid-template-columns: 1fr; }
  .irrig-cinematic { padding: 6rem 0; }
  
  .pf-panel { flex-direction: column; height: auto; min-height: auto; }
  .pf-panel--rev { flex-direction: column; }
  .pf-panel__img { flex: none; height: 50vw; min-height: 350px; }
  .pf-panel__text { flex: none; padding: 4rem 3rem; }
  
  .pf-mosaic { grid-template-rows: repeat(2, 300px); }
  .pf-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
  
  .ceo__grid { grid-template-columns: 1fr; gap: 4rem; }
  .ceo__img-col { max-width: 500px; margin: 0 auto; }
  .ceo__quote-card { right: 0; }
  
  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about__arch { width: 90%; margin: 0 auto; }
  .about__arch-badge { right: -1rem; }
  
  .care__grid { grid-template-columns: 1fr; gap: 4rem; }
  .care-card--offset { margin-top: 0; }
  
  .protection__grid { grid-template-columns: 1fr; gap: 4rem; }
  .irrig-clean__grid { grid-template-columns: 1fr; gap: 4rem; }
  
  .transform__grid { grid-template-columns: 1fr; gap: 4rem; }
  .transform__glass-card { left: 0; bottom: -1.5rem; }
}

@media(max-width:768px){
  /* Global Resets */
  html, body { overflow-x: hidden; width: 100%; }
  .section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }
  h2 { font-size: clamp(2.2rem, 7vw, 3rem); margin-bottom: 1.5rem; }
  
  /* Header */
  .header { width: calc(100% - 2rem); top: 1rem; }
  .header__inner { padding: 0.6rem 1rem 0.6rem 1.25rem; }
  .header__nav, .header__btn { display: none; }
  .burger { display: flex; }
  
  /* Hero */
  .hero { min-height: auto; height: 100svh; display: flex; flex-direction: column; justify-content: space-between; }
  .hero__topbar { padding: 1.5rem 1.25rem; justify-content: center; }
  .hero__main { padding: 0 1.25rem; margin: auto 0; text-align: center; gap: 1rem; }
  
  .hero__live-badge { 
    height: auto; 
    max-width: 100%; 
    border-radius: var(--r-xl); 
    padding: 0.4rem 0.8rem 0.4rem 0.4rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  .hero__live-badge.expanded, .hero__live-badge:hover { max-width: 100%; }
  .hero__live-badge-text { 
    white-space: normal; 
    line-height: 1.4; 
    font-size: 0.65rem; 
    padding-right: 0.5rem; 
  }
  
  .hero__heading { font-size: clamp(2.2rem, 8vw, 3rem); margin-bottom: 1rem; }
  .hero__desc { font-size: 0.95rem; margin: 0 auto 2rem auto; }
  
  .hero__actions { flex-direction: column; width: 100%; gap: 1rem; }
  .hero__cta, .hero__ghost { width: 100%; justify-content: center; padding: 1rem; }
  
  .hero__bottom { padding: 1.5rem 1.25rem; }
  .hero__glass-bar { 
    flex-direction: row; 
    padding: 1.2rem 1rem; 
    width: 100%; 
    justify-content: space-between; 
    border-radius: var(--r-md);
  }
  .hero__stat { 
    width: 33.33%; 
    flex-direction: column; 
    padding: 0 0.2rem; 
    border-right: 1px solid rgba(255,255,255,0.1); 
    gap: 0.4rem; 
    justify-content: center;
  }
  .hero__stat:last-child { border-right: none; }
  .hero__stat-n { font-size: 1.25rem; }
  .hero__stat-l { font-size: 0.55rem; text-align: center; max-width: 100%; line-height: 1.2; }
  .hero__scroll-wrap { display: none; }
  
  /* Sections */
  .services__header { flex-direction: column; gap: 1.5rem; }
  .svc-prem-card { padding: 2rem; min-height: auto; }
  .svc-prem-card h4 { font-size: 1.5rem; }
  
  .about__pill { display: none; }
  .about__arch { width: 100%; border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .about__arch-badge { 
    right: auto; 
    left: 50%; 
    transform: translateX(-50%); 
    bottom: -1.5rem; 
    min-width: 80%; 
    padding: 1rem; 
    font-size: 1.6rem; 
  }
  .about__float-card { display: none; }
  
  /* Clients */
  .clients-strip { padding: 2.5rem 0; }
  .clients-strip__track { gap: 3rem; padding-right: 3rem; }
  .clients-strip__logo img { height: 45px; max-width: 160px; }
  .clients-strip__logo img[src*="carrefour"] { height: 56px; max-width: 200px; }
  .clients-strip__logo img[src*="c6-bank"] { height: 65px; max-width: 200px; }
  
  /* Care */
  .care-card__media { aspect-ratio: 1/1; }
  .care-card__content { padding-right: 0; }
  
  /* Portfolio */
  .pf-header-glass { padding-top: 0; }
  .pf-glass-box { padding: 2.5rem 1.5rem; border-radius: var(--r-md); }
  .pf-glass-title { font-size: 2rem; }
  .pf-glass-btn { width: 100%; justify-content: center; }
  
  .pf-panel__text { padding: 2.5rem 1.5rem; }
  .pf-panel__img { height: 60vw; min-height: 250px; }
  .pf-panel__num { font-size: 3rem; top: 1.5rem; right: 1.5rem; }
  .pf-panel--rev .pf-panel__num { left: 1.5rem; right: auto; }
  
  .pf-cinematic { min-height: 400px; }
  .pf-cinematic__text { padding: 2rem 1.5rem; }
  .pf-cinematic__text h3 { font-size: 2.2rem; }
  
  .pf-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pf-mosaic__item--tall, .pf-mosaic__item--sm, .pf-mosaic__item--wide { 
    grid-column: span 1; 
    grid-row: auto; 
    aspect-ratio: 1/1; 
  }
  .pf-mosaic__info { padding: 1.2rem; }
  
  /* Protection */
  .prot-card { padding: 2rem 1.5rem; }
  .prot-card__content h3 { font-size: 1.8rem; }
  .prot-card__icon { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 1.5rem; }
  .protection__banner { padding: 2rem 1.2rem; border-radius: var(--r-md); }
  .protection__banner-title { font-size: 1.8rem; }
  .protection__cta h3 { font-size: 2rem; }
  
  /* CEO & Transform */
  .ceo__img-frame { max-width: 100%; border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .ceo__quote-card { 
    position: relative; 
    margin: -2rem auto 0 auto; 
    width: 90%; 
    z-index: 2; 
    padding: 1.5rem; 
  }
  .ceo__valores { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .transform__text h2 { font-size: 2rem; }
  .transform__num { font-size: 3rem; }
  .transform__glass-card { 
    position: relative; 
    bottom: 0; 
    left: 0; 
    width: 90%; 
    margin: -2rem auto 0 auto; 
    z-index: 2; 
    max-width: none; 
    padding: 1.5rem;
  }
  
  /* Testimonials */
  .test-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .test-card { padding: 2rem 1.5rem; }
  
  /* Big CTA & Footer */
  .bigcta h2 { font-size: 2.5rem; }
  .bigcta__content { padding: 1.5rem; width: 100%; }
  .bigcta__acts { flex-direction: column; width: 100%; gap: 1rem; }
  .btn-wpp, .btn-ghost { width: 100%; justify-content: center; }
  
  .footer { padding: 4rem 0 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
  .footer__brand h3 { font-size: 1.8rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 1.5rem; }
}

@media(max-width:480px){
  h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .hero__heading { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero__glass-bar { padding: 1rem 0.5rem; }
  .hero__stat-n { font-size: 1.1rem; }
  
  .pf-glass-box { padding: 2rem 1.25rem; }
  .pf-panel__text { padding: 2rem 1.25rem; }
  
  .about__arch-badge { width: 90%; font-size: 1.4rem; padding: 1rem; }
  .ceo__quote-card { width: 95%; }
  .transform__glass-card { width: 95%; }
}

/* ── POPUP MODAL ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 12, 9, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.popup-modal {
  position: relative;
  width: 85%;
  max-width: 540px;
  background: transparent;
  transform: scale(0.96) translateY(30px);
  opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
.popup-overlay.active .popup-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.popup-close {
  position: absolute;
  top: -40px;
  right: -50px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.4s ease, transform 0.6s var(--ease);
  line-height: 1;
  padding: 0.5rem;
}
.popup-close:hover {
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}
#popup-link {
  display: block;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}
.popup-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}
#popup-link:hover .popup-img {
  transform: scale(1.03);
}

@media(max-width: 768px) {
  .popup-modal {
    width: 90%;
  }
  .popup-close {
    top: -55px;
    right: -10px;
  }
}
