/* ═══════════════════════════════════════════
   Life Síndico Pro — Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --dark-blue: #2a3547;
  --orange:    #c9622a;
  --cream:     #f0d9c8;
  --white:     #ffffff;
  --light-gray:#f7f5f3;
  --text-dark: #1e2a38;
  --text-mid:  #4a5568;
  --text-light:#8a99ab;
  --border:    #e8e2dc;
  --whatsapp:  #25D366;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  animation: slideDown .6s ease both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width .25s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

/* Nav CTA — Solicite uma Proposta */
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.4px !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
  box-shadow: 0 4px 16px rgba(201,98,42,.3) !important;
  white-space: nowrap;
}

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

.nav-cta:hover {
  background: var(--dark-blue) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(42,53,71,.3) !important;
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed;
  width: 62px;
  height: 62px;
  bottom: 32px;
  right: 32px;
  border-radius: 50%;
  z-index: 1000;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.whatsapp-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  position: relative;
  z-index: 2;
}
.whatsapp-float:hover .whatsapp-logo {
  transform: rotate(360deg) scale(1.1);
}
.btn-wpp-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white) !important;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 34px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wpp-main:hover {
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
.wpp-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.wpp-hint {
  color: rgba(255,255,255,.55);
  font-size: 0.82rem;
  margin-top: 10px;
  margin-bottom: 0;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: wppPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,.75); }
}

.whatsapp-tooltip {
  background: var(--dark-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  letter-spacing: 0.2px;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 100px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp .9s .2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  border: 1px solid rgba(201,98,42,.2);
  margin-bottom: 28px;
  width: fit-content;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0.25;
  border-radius: 2px;
}

.hero p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.btn-primary {
  background: var(--dark-blue);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(42,53,71,.2);
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,98,42,.3);
}

.btn-secondary {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.btn-secondary:hover { color: var(--orange); }
.btn-secondary svg { transition: transform .2s; }
.btn-secondary:hover svg { transform: translateX(4px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; }

.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1;
}

.stat strong span { color: var(--orange); }

.stat small {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 5px;
}

/* Hero Right */
.hero-right {
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn .9s .5s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,98,42,.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,217,200,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 60px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.building-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px 28px;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(8px);
  transition: transform .3s;
}

.building-card:hover { transform: translateY(-4px); }

.building-card .bc-icon {
  width: 40px; height: 40px;
  background: rgba(201,98,42,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.building-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.building-card p {
  font-size: 12px;
  color: rgba(240,217,200,.6);
  line-height: 1.6;
}

.bc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}

.bc-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.bc-mini strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  line-height: 1;
}

.bc-mini strong span { color: var(--orange); }

.bc-mini small {
  font-size: 10px;
  color: rgba(240,217,200,.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ─── SECTION BASE ─── */
section { padding: 100px 60px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

/* ─── ABOUT ─── */
.about {
  background: var(--light-gray);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-top: 24px;
  font-weight: 300;
}

.about-text p + p { margin-top: 16px; }

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

.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}

.pillar:hover {
  border-color: var(--orange);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(201,98,42,.1);
}

.pillar-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.pillar-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.pillar-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── MISSION / VISION / VALUES ─── */
.mvv {
  background: var(--white);
  text-align: center;
  padding-bottom: 0;
}

.mvv .section-label { justify-content: center; }
.mvv .section-label::before { display: none; }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.mvv-card {
  padding: 56px 44px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .3s;
}

.mvv-card:last-child { border-right: none; }
.mvv-card:hover { background: var(--light-gray); }

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background .3s;
}

.mvv-card:hover::before { background: var(--orange); }

.mvv-number {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color .3s;
}

.mvv-card:hover .mvv-number { color: rgba(201,98,42,.15); }

.mvv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.mvv-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

/* ─── VALUES LIST ─── */
.values-section {
  background: var(--dark-blue);
  color: var(--white);
}

.values-section .section-label { color: var(--cream); }
.values-section .section-label::before { background: var(--cream); }
.values-section .section-title { color: var(--white); }

.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.values-header p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(240,217,200,.7);
  font-weight: 300;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.value-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px;
  border-radius: 4px;
  transition: background .25s, transform .25s;
  cursor: default;
}

.value-item:hover {
  background: rgba(201,98,42,.15);
  transform: translateY(-4px);
}

.value-emoji { font-size: 28px; margin-bottom: 18px; display: block; }

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(240,217,200,.6);
}

/* ─── WHY US ─── */
.why {
  background: var(--light-gray);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 480px;
}

.why-card-big {
  position: absolute;
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  width: 300px;
  top: 0; left: 0;
  animation: float1 4s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.why-card-big .wc-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.why-card-big h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.why-card-big p {
  font-size: 12.5px;
  color: rgba(240,217,200,.6);
  line-height: 1.6;
}

.why-card-sm {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  width: 220px;
  bottom: 40px; right: 20px;
  animation: float2 4s 1.5s ease-in-out infinite;
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.why-card-sm .ws-icon { font-size: 26px; margin-bottom: 10px; display: block; }

.why-card-sm h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.why-card-sm p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
}

.why-card-accent {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.2px;
  animation: float3 3s 0.75s ease-in-out infinite;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(201,98,42,.2);
}

@keyframes float3 {
  0%, 100% { transform: translate(-50%,-50%) rotate(-3deg); }
  50%       { transform: translate(-50%,-50%) rotate(3deg) translateY(-6px); }
}

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

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 32px; height: 32px;
  min-width: 32px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.why-check svg { width: 16px; color: var(--orange); }

.why-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── CTA ─── */
.cta {
  background: var(--orange);
  text-align: center;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,.07);
  border-radius: 50%;
  pointer-events: none;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative; z-index: 2;
}

.cta p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
  position: relative; z-index: 2;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
  position: relative; z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark-blue);
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(240,217,200,.55);
  line-height: 1.75;
  max-width: 300px;
  font-weight: 300;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(240,217,200,.55);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  background: rgba(249, 246, 246, 0.25);
  color: rgb(8, 8, 8);
  font-size: 12px;
  text-align: center;
  padding: 18px 60px;
  letter-spacing: 0.3px;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 24px; }
  .hero-right { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .about, .why { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { height: 260px; }
  .why-card-big { width: 200px; }
  .why-card-sm { display: none; }

  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-card { border-right: none; border-bottom: 1px solid var(--border); }
  .mvv-card:last-child { border-bottom: none; }

  .values-header { grid-template-columns: 1fr; gap: 20px; }
  .values-list { grid-template-columns: 1fr 1fr; }

  footer { grid-template-columns: 1fr; gap: 36px; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-btn { width: 52px; height: 52px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
}
