/* ═══════════════════════════════════════
   CALEBE ALVES — CORRETOR DE IMÓVEIS
   Estilos principais — Uberlândia · MG
   ═══════════════════════════════════════ */

/* ── PALETA DE CORES ── */
:root{
  --cream:#F8F5EF;
  --cream2:#F0EBE0;
  --navy:#0C1B33;
  --navy2:#142540;
  --navy3:#1C3358;
  --gold:#B8922A;
  --gold2:#D4AA4A;
  --gold3:#EDD98A;
  --white:#FFFFFF;
  --gray:#4A4A4A;
  --gray2:#888880;
  --dark:#1A1410;
}

/* ── RESET GLOBAL ── */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

::-webkit-scrollbar{
  width: 4px;
}

::-webkit-scrollbar-thumb{
  background: var(--gold);
  border-radius: 2px;
}

/* ═════════════════════════════
   HEADER — Navegação fixa
═════════════════════════════ */
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 27, 51, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(184, 146, 42, 0.3);
  padding: 0 60px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-h{
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-h a{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B0A898;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-h a:hover{
  color: var(--gold2);
}

.nav-cta{
  border: 0.5px solid var(--gold) !important;
  color: var(--gold2) !important;
  padding: 10px 28px;
}

.nav-cta:hover{
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ═════════════════════════════
   HERO — Seção de entrada
═════════════════════════════ */
.hero{
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184, 146, 42, 0.07), transparent 55%);
  z-index: 1;
}

.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(184, 146, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 146, 42, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

.hero-left{
  position: relative;
  z-index: 2;
  padding: 140px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before{
  content: '';
  width: 32px;
  height: 0.5px;
  background: var(--gold);
}

.hero-h1{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}

.hero-h1 em{
  font-style: italic;
  color: var(--gold2);
  display: block;
}

.hero-slogan{
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #B0A898;
  letter-spacing: 1px;
  margin-bottom: 36px;
}

.hero-desc{
  font-size: 16px;
  font-weight: 300;
  color: rgba(200, 192, 180, 0.85);
  line-height: 2;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-desc strong{
  color: var(--gold3);
  font-weight: 400;
}

.hero-btns{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics{
  display: flex;
  gap: 44px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 0.5px solid rgba(184, 146, 42, 0.2);
}

.metric-n{
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--gold2);
  line-height: 1;
}

.metric-l{
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888880;
  margin-top: 4px;
}

.hero-right{
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88) contrast(1.04);
  display: block;
}

.hero-right::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(90deg, var(--navy), transparent);
  z-index: 1;
}

.hero-right::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(transparent, var(--navy));
  z-index: 1;
}

.foto-frame{
  position: absolute;
  top: 56px;
  right: 36px;
  width: calc(100% - 72px);
  height: calc(100% - 100px);
  border: 0.5px solid rgba(184, 146, 42, 0.22);
  z-index: 2;
  pointer-events: none;
}

.fc{
  position: absolute;
  width: 18px;
  height: 18px;
}

.fc.tl{
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.fc.tr{
  top: -1px;
  right: -1px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.fc.bl{
  bottom: -1px;
  left: -1px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.fc.br{
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.badge-vgv{
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(12, 27, 51, 0.94);
  border: 0.5px solid rgba(184, 146, 42, 0.45);
  backdrop-filter: blur(10px);
  padding: 18px 32px;
  text-align: center;
  white-space: nowrap;
}

.badge-vgv-n{
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--gold2);
  line-height: 1;
}

.badge-vgv-l{
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888880;
  margin-top: 5px;
}

/* ═════════════════════════════
   SEGMENTOS — 4 tipos de imóveis
═════════════════════════════ */
.segmentos{
  padding: 0;
  background: var(--navy);
}

.seg-intro{
  padding: 80px 80px 60px;
  text-align: center;
}

.sec-eyebrow{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sec-h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.15;
}

.sec-h2 em{
  font-style: italic;
  color: var(--gold2);
}

.seg-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(184, 146, 42, 0.1);
}

.seg-card{
  position: relative;
  overflow: hidden;
  min-height: 460px;
  cursor: default;
}

.seg-card-img{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  filter: brightness(0.42) saturate(0.75);
}

.seg-card:hover .seg-card-img{
  transform: scale(1.07);
  filter: brightness(0.32) saturate(0.65);
}

.seg-card-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(8, 18, 36, 0.95) 100%);
}

.seg-card-content{
  position: relative;
  z-index: 2;
  padding: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.seg-num{
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(212, 170, 74, 0.18);
  line-height: 1;
  margin-bottom: auto;
  padding-top: 8px;
}

.seg-titulo{
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.seg-divider{
  width: 32px;
  height: 0.5px;
  background: var(--gold);
  margin-bottom: 14px;
}

.seg-desc{
  font-size: 15px;
  font-weight: 300;
  color: rgba(220, 210, 195, 0.9);
  line-height: 1.85;
  max-width: 400px;
}

.seg-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.seg-tag{
  background: rgba(184, 146, 42, 0.15);
  border: 0.5px solid rgba(184, 146, 42, 0.35);
  color: var(--gold3);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
}

/* ═════════════════════════════
   SOBRE — Informações do corretor
═════════════════════════════ */
.sobre{
  padding: 120px 80px;
  background: var(--cream);
}

.sobre-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-foto-wrap{
  position: relative;
}

.sobre-foto-wrap img{
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.88) contrast(1.04);
}

.sobre-frame{
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 0.5px solid rgba(184, 146, 42, 0.3);
  pointer-events: none;
  z-index: 1;
}

.sf{
  position: absolute;
  width: 16px;
  height: 16px;
}

.sf.tl{
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.sf.tr{
  top: -1px;
  right: -1px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.sf.bl{
  bottom: -1px;
  left: -1px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.sf.br{
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.sobre-content .sec-h2{
  color: var(--navy);
  margin-bottom: 20px;
}

.sobre-intro{
  font-size: 16px;
  font-weight: 300;
  color: #3A3A3A;
  line-height: 2;
  margin-bottom: 36px;
}

.sobre-intro strong{
  color: var(--gold);
  font-weight: 600;
}

.diferenciais{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dif{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 0.5px solid rgba(184, 146, 42, 0.15);
}

.dif:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.dif-n{
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  min-width: 32px;
  padding-top: 2px;
  letter-spacing: 1px;
}

.dif-titulo{
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.dif-desc{
  font-size: 14px;
  font-weight: 300;
  color: #4A4A4A;
  line-height: 1.7;
}

/* ═════════════════════════════
   FICHA — Formulário de contato
═════════════════════════════ */
.ficha{
  padding: 0;
  background: var(--cream2);
  position: relative;
}

.ficha-inner{
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.ficha-left{
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 60%, var(--navy3) 100%);
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ficha-left::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(184, 146, 42, 0.07), transparent 60%);
}

.ficha-left::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 146, 42, 0.3), transparent);
}

.ficha-left .sec-eyebrow{
  color: var(--gold2);
}

.ficha-left .sec-h2{
  color: var(--white);
}

.ficha-desc{
  font-size: 16px;
  font-weight: 300;
  color: rgba(200, 192, 180, 0.82);
  line-height: 1.9;
  margin: 20px 0 44px;
}

.fi-items{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.fi{
  display: flex;
  gap: 16px;
  align-items: center;
}

.fi-icon{
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 0.5px solid rgba(184, 146, 42, 0.4);
  background: rgba(184, 146, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.fi-txt{
  font-size: 15px;
  font-weight: 400;
  color: rgba(200, 192, 180, 0.85);
  line-height: 1.5;
}

.fi-txt strong{
  color: var(--gold3);
  font-weight: 600;
}

.ficha-right{
  background: var(--cream2);
  padding: 100px 72px;
}

/* ═════════════════════════════
   FORMULÁRIO — Estilos do form
═════════════════════════════ */
.form-box{
  background: var(--white);
  border: 0.5px solid rgba(184, 146, 42, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  padding: 48px;
  position: relative;
}

.form-box::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-titulo{
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.2;
}

.form-titulo em{
  font-style: italic;
  color: var(--gold);
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.fg{
  margin-bottom: 26px;
}

.fg.full{
  grid-column: 1 / -1;
}

.fg label{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.fg input,
.fg select,
.fg textarea{
  width: 100%;
  background: #F8F6F2;
  border: 1px solid rgba(184, 146, 42, 0.3);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #1A1410;
  font-family: 'Jost', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder{
  color: #888880;
  font-weight: 300;
  font-size: 14px;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus{
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 146, 42, 0.08);
}

.fg select{
  cursor: pointer;
  color: #888880;
}

.fg select.v,
.fg select:not([value=""]){
  color: #1A1410;
}

.fg textarea{
  resize: none;
  height: 88px;
}

.form-check{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 400;
  color: #3A3A3A;
  line-height: 1.7;
  margin: 8px 0 28px;
}

.form-check input{
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  transform: scale(1.3);
}

.form-submit{
  width: 100%;
  background: var(--navy);
  border: 2px solid var(--navy);
  color: var(--gold2);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 20px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
  border-radius: 2px;
}

.form-submit:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 146, 42, 0.25);
}

/* ═════════════════════════════
   DEPOIMENTOS — Reviews clientes
═════════════════════════════ */
.deps{
  padding: 120px 80px;
  background: var(--white);
}

.deps .sec-h2{
  color: var(--navy);
}

.deps-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: rgba(184, 146, 42, 0.12);
}

.dep{
  background: var(--white);
  padding: 44px 40px;
  transition: background 0.3s;
}

.dep:hover{
  background: var(--cream);
}

.dep-stars{
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold2);
  margin-bottom: 20px;
}

.dep-aspas{
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(184, 146, 42, 0.12);
  line-height: 0.4;
  margin-bottom: 20px;
}

.dep-txt{
  font-size: 15px;
  font-weight: 300;
  color: #3A3A3A;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 24px;
}

.dep-sep{
  width: 24px;
  height: 0.5px;
  background: var(--gold);
  margin-bottom: 16px;
}

.dep-nome{
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dep-info{
  font-size: 12px;
  font-weight: 300;
  color: #6A6A6A;
  margin-top: 3px;
}

/* ═════════════════════════════
   BOTÕES — Estilos gerais
═════════════════════════════ */
.btn-gold{
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 38px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold:hover{
  background: var(--gold2);
  border-color: var(--gold2);
}

.btn-outline{
  background: transparent;
  border: 0.5px solid rgba(184, 146, 42, 0.5);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 38px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover{
  border-color: var(--gold);
  background: rgba(184, 146, 42, 0.08);
}

/* ═════════════════════════════
   CTA — Call-to-action final
═════════════════════════════ */
.cta{
  padding: 140px 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 146, 42, 0.07), transparent 60%);
}

.cta-inner{
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta h2 em{
  font-style: italic;
  color: var(--gold2);
}

.cta p{
  font-size: 17px;
  font-weight: 300;
  color: rgba(200, 192, 180, 0.8);
  line-height: 1.9;
  margin-bottom: 52px;
}

.cta-btns{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═════════════════════════════
   FOOTER — Rodapé
═════════════════════════════ */
footer{
  background: var(--navy);
  border-top: 0.5px solid rgba(184, 146, 42, 0.15);
  padding: 36px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo img{
  height: 40px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-txt{
  font-size: 12px;
  font-weight: 300;
  color: #888880;
  text-align: center;
  line-height: 1.8;
}

.footer-wpp{
  font-size: 13px;
  font-weight: 500;
  color: var(--gold2);
  text-decoration: none;
  letter-spacing: 1px;
}

/* ═════════════════════════════
   INSTAGRAM — Seção do feed
═════════════════════════════ */
.insta-section{
  padding: 120px 80px;
  background: var(--cream);
}

.insta-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.insta-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(184, 146, 42, 0.2);
}

.insta-profile{
  display: flex;
  align-items: center;
  gap: 24px;
}

.insta-avatar-wrap{
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  padding: 3px;
  border-radius: 50%;
}

.insta-avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold2);
  font-weight: 400;
  border: 3px solid var(--cream);
}

.insta-handle{
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.insta-name{
  font-size: 13px;
  font-weight: 300;
  color: #666;
  margin-bottom: 10px;
}

.insta-stats{
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #555;
}

.insta-stats strong{
  color: var(--navy);
  font-weight: 700;
}

.insta-follow-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: opacity 0.3s, transform 0.3s;
}

.insta-follow-btn:hover{
  opacity: 0.88;
  transform: translateY(-2px);
}

.insta-eyebrow{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.insta-titulo{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 48px;
}

.insta-titulo em{
  font-style: italic;
  color: var(--gold2);
}

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

.insta-card{
  background: var(--white);
  border: 0.5px solid rgba(184, 146, 42, 0.15);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.insta-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.insta-thumb{
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.insta-thumb-icon{
  font-size: 44px;
  margin-bottom: 8px;
}

.insta-thumb-tag{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 2px;
}

.insta-card-body{
  padding: 20px;
}

.insta-card-text{
  font-size: 13px;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-card-meta{
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #888;
}

.insta-card-cta{
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-cta-content{
  text-align: center;
  padding: 32px 24px;
}

.insta-cta-icon{
  color: var(--gold2);
  margin-bottom: 16px;
}

.insta-cta-text{
  font-size: 15px;
  font-weight: 300;
  color: rgba(200, 192, 180, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.insta-follow-btn-sm{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: opacity 0.3s;
}

.insta-follow-btn-sm:hover{
  opacity: 0.85;
}

@media (max-width: 900px){
  .insta-section{
    padding: 72px 24px;
  }

  .insta-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-header{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px){
  .insta-grid{
    grid-template-columns: 1fr;
  }
}

/* ═════════════════════════════
   WHATSAPP FLUTUANTE
═════════════════════════════ */
.wpp-float{
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.wpp-float:hover{
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ═════════════════════════════
   HAMBURGER MENU MOBILE
═════════════════════════════ */
.nav-hamburger{
  display: none;
  background: none;
  border: 0.5px solid rgba(184, 146, 42, 0.4);
  color: var(--gold2);
  font-size: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.nav-hamburger:hover{
  background: rgba(184, 146, 42, 0.1);
}

.nav-overlay{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(8, 16, 32, 0.96);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
}

.nav-overlay.open{
  display: flex;
}

.nav-mobile{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.nav-mobile a{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #B0A898;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile a:hover{
  color: var(--gold2);
}

.nav-cta-mobile{
  border: 0.5px solid var(--gold) !important;
  color: var(--gold2) !important;
  padding: 14px 48px !important;
  margin-top: 8px;
}

/* ═════════════════════════════
   ANIMAÇÕES DE SCROLL
═════════════════════════════ */
[data-animate]{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═════════════════════════════
   RESPONSIVO — Mobile & Tablet
═════════════════════════════ */
@media (max-width: 900px){
  header{
    padding: 0 20px;
    height: 68px;
  }

  .nav-h a:not(.nav-cta){
    display: none;
  }

  .nav-hamburger{
    display: flex;
  }

  .nav-cta{
    display: none !important;
  }

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

  .hero-right{
    height: 70vw;
    max-height: 420px;
  }

  .hero-left{
    padding: 110px 28px 56px;
  }

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

  .seg-card{
    min-height: 360px;
  }

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

  .ficha-inner{
    grid-template-columns: 1fr;
  }

  .ficha-left,
  .ficha-right{
    padding: 64px 28px;
  }

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

  .sobre,
  .deps,
  .cta{
    padding: 72px 28px;
  }

  .segmentos .seg-intro{
    padding: 72px 28px 48px;
  }

  footer{
    padding: 28px 28px;
    flex-direction: column;
    text-align: center;
  }

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

  .form-box{
    padding: 28px 20px;
  }
}

@media (max-width: 600px){
  .wpp-float{
    width: 64px;
    height: 64px;
    font-size: 28px;
    bottom: 20px;
    right: 16px;
  }

  .btn-gold,
  .btn-outline{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
