*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --teal:#0F6E56;
  --teal-light:#1D9E75;
  --teal-pale:#E1F5EE;
  --teal-mid:#5DCAA5;
  --navy:#04342C;
  --white:#FAFDFB;
  --gray-light:#F4F7F5;
  --gray-mid:#B4B2A9;
  --gray-dark:#444441;
  --text:#1a2e28;
  --accent:#EF9F27;
  --accent-light:#FAEEDA;
  --font-display:'Outfit',system-ui,sans-serif;
  --font-body:'Source Sans 3',system-ui,sans-serif;
}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  font-weight:400;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,.logo-text,.hero-eyebrow,.section-tag{font-family:var(--font-display)}

/* NAV */
.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:112;
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem max(5vw,env(safe-area-inset-right)) 1rem max(5vw,env(safe-area-inset-left));
  background:rgba(250,253,251,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(15,110,86,0.08);
}
.nav-menu{
  display:flex;
  align-items:center;
  gap:2rem;
}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0}
.logo-icon{
  width:38px;height:38px;border-radius:10px;
  background:var(--teal);
  display:flex;align-items:center;justify-content:center;
}
.logo-icon svg{width:22px;height:22px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round}
.logo-text{font-size:1.25rem;font-weight:700;color:var(--teal);letter-spacing:-0.02em}
.logo-text span{color:var(--accent)}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{font-size:.9rem;color:var(--gray-dark);text-decoration:none;font-weight:500;transition:color .2s}
.nav-links a:hover{color:var(--teal)}
.nav-cta{
  background:var(--teal);color:#fff;
  padding:.55rem 1.4rem;border-radius:8px;
  font-size:.88rem;font-weight:600;text-decoration:none;
  transition:background .2s,transform .15s;
  font-family:var(--font-display);letter-spacing:.02em;
  white-space:nowrap;
}
.nav-cta:hover{background:var(--navy);transform:translateY(-1px)}
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;height:44px;
  padding:10px;
  border:none;border-radius:10px;
  background:var(--teal-pale);
  cursor:pointer;
  flex-shrink:0;
  position:relative;
  z-index:103;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}
.nav-toggle span{
  display:block;height:2px;width:100%;
  background:var(--teal);border-radius:2px;
  transition:transform .2s,opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-menu-close{display:none}
.nav-backdrop{
  display:none;
  position:fixed;inset:0;
  background:rgba(4,52,44,0.45);
  z-index:110;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}
.nav-backdrop.is-visible{
  display:block;
  opacity:1;
  pointer-events:auto;
}
body.nav-open{overflow:hidden}

/* HERO */
.hero{
  min-height:100vh;
  display:grid;grid-template-columns:1fr 1fr;
  align-items:center;
  padding:7rem 5vw 4rem;
  gap:3rem;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;
  top:-200px;right:-150px;
  width:700px;height:700px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(29,158,117,0.10) 0%,transparent 70%);
  pointer-events:none;
}
.hero::after{
  content:'';position:absolute;
  bottom:-100px;left:-100px;
  width:500px;height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(239,159,39,0.07) 0%,transparent 70%);
  pointer-events:none;
}
.hero-eyebrow{
  display:inline-block;
  font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--teal);background:var(--teal-pale);
  padding:.35rem .9rem;border-radius:100px;margin-bottom:1.5rem;
}
.hero h1{
  font-size:clamp(2.4rem,4vw,3.8rem);
  font-weight:800;line-height:1.1;
  letter-spacing:-0.03em;color:var(--navy);
  margin-bottom:1.5rem;
}
.hero h1 span{color:var(--teal)}
.hero p{
  font-size:1.1rem;color:#4a6b60;line-height:1.7;
  max-width:480px;margin-bottom:2.5rem;
  font-weight:300;
}
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap;align-items:stretch}
.btn-primary{
  background:var(--teal);color:#fff;
  padding:.8rem 2rem;border-radius:10px;
  font-size:1rem;font-weight:600;text-decoration:none;
  transition:all .2s;display:inline-block;
  font-family:var(--font-display);
  box-shadow:0 4px 20px rgba(15,110,86,0.25);
  text-align:center;
}
.btn-primary:hover{background:var(--navy);transform:translateY(-2px);box-shadow:0 8px 28px rgba(15,110,86,0.3)}
.btn-secondary{
  color:var(--teal);padding:.8rem 1.5rem;
  font-size:1rem;font-weight:500;text-decoration:none;
  display:inline-flex;align-items:center;gap:.4rem;
  transition:gap .2s;
}
.btn-secondary:hover{gap:.8rem}
.btn-secondary::after{content:'→';display:inline-block;transition:transform .2s}
.hero-visual{
  position:relative;display:flex;align-items:center;justify-content:center;
}
.dashboard-mock{
  width:100%;max-width:580px;
  background:#fff;
  border:1px solid rgba(15,110,86,0.12);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 24px 80px rgba(4,52,44,0.12);
  animation:float 5s ease-in-out infinite;
}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.dash-header{
  background:var(--teal);padding:1rem 1.5rem;
  display:flex;align-items:center;gap:1rem;
}
.dash-header-title{color:#fff;font-family:var(--font-display);font-weight:700;font-size:.95rem}
.dash-header-sub{color:rgba(255,255,255,.65);font-size:.75rem}
.dash-dots{display:flex;gap:6px;margin-left:auto}
.dash-dots span{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.4)}
.dash-body{padding:1.5rem;display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem}
.dash-card{
  background:var(--gray-light);border-radius:12px;
  padding:1rem;text-align:center;
  border:1px solid rgba(15,110,86,0.06);
}
.dash-card-icon{
  width:36px;height:36px;border-radius:9px;
  margin:0 auto .7rem;
  display:flex;align-items:center;justify-content:center;
}
.dash-card-num{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--navy);line-height:1}
.dash-card-label{font-size:.72rem;color:var(--gray-mid);margin-top:.3rem;font-weight:500}
.dash-schedule{margin:0 1.5rem 1.5rem;background:var(--gray-light);border-radius:12px;overflow:hidden}
.dash-schedule-header{
  background:var(--teal-pale);padding:.6rem 1rem;
  font-family:var(--font-display);font-size:.8rem;font-weight:700;color:var(--teal);
}
.dash-item{
  display:flex;align-items:center;gap:.8rem;padding:.7rem 1rem;
  border-bottom:1px solid rgba(15,110,86,0.07);
}
.dash-item:last-child{border-bottom:none}
.dash-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.dash-item-name{font-size:.8rem;font-weight:500;color:var(--navy)}
.dash-item-time{font-size:.72rem;color:var(--gray-mid);margin-left:auto}
.dash-item-status{
  font-size:.68rem;font-weight:600;padding:.2rem .6rem;border-radius:100px;
}

/* FLOATING BADGES */
.badge-float{
  position:absolute;
  background:#fff;
  border:1px solid rgba(15,110,86,0.15);
  border-radius:12px;
  padding:.6rem 1rem;
  display:flex;align-items:center;gap:.6rem;
  box-shadow:0 8px 32px rgba(4,52,44,0.1);
  font-size:.82rem;font-weight:500;color:var(--navy);
  white-space:nowrap;
}
.badge-float.b1{top:15%;left:-20px;animation:float2 4s ease-in-out infinite}
.badge-float.b2{bottom:20%;right:-10px;animation:float2 4s ease-in-out infinite .8s}
@keyframes float2{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-8px) rotate(1deg)}}
.badge-icon{width:28px;height:28px;border-radius:8px;display:flex;align-items:center;justify-content:center}

/* SECTION COMMON */
section{padding:5rem 5vw}
.section-tag{
  display:inline-block;font-size:.75rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--teal);background:var(--teal-pale);
  padding:.3rem .85rem;border-radius:100px;margin-bottom:1rem;
}
.section-title{
  font-size:clamp(1.8rem,3vw,2.8rem);
  font-weight:800;letter-spacing:-0.03em;color:var(--navy);
  line-height:1.15;margin-bottom:1rem;
}
.section-desc{
  font-size:1.05rem;color:#4a6b60;line-height:1.7;
  max-width:580px;font-weight:300;
}

/* STATS */
.stats-bar{
  background:var(--teal);
  padding:3rem 5vw;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1rem;text-align:center;
}
.stat-item{padding:1rem}
.stat-num{
  font-family:var(--font-display);
  font-size:2.5rem;font-weight:800;
  color:#fff;line-height:1;
  margin-bottom:.4rem;
}
.stat-label{font-size:.88rem;color:rgba(255,255,255,.7);font-weight:300}

/* FEATURES */
.features{background:var(--white)}
.features-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:3rem;
}
.feature-card{
  background:#fff;border:1px solid rgba(15,110,86,0.1);
  border-radius:16px;padding:2rem;
  transition:transform .2s,box-shadow .2s,border-color .2s;
  position:relative;overflow:hidden;
}
.feature-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--teal-mid),var(--teal));
  transform:scaleX(0);transform-origin:left;transition:transform .3s;
}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(15,110,86,0.12);border-color:rgba(15,110,86,0.25)}
.feature-card:hover::before{transform:scaleX(1)}
.feature-icon{
  width:52px;height:52px;border-radius:14px;
  background:var(--teal-pale);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.3rem;
}
.feature-icon svg{width:26px;height:26px;stroke:var(--teal);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.feature-card h3{
  font-family:var(--font-display);font-size:1.1rem;
  font-weight:700;color:var(--navy);margin-bottom:.7rem;
}
.feature-card p{font-size:.9rem;color:#4a6b60;line-height:1.6;font-weight:300}

/* TV SCREEN */
.tv-section{
  background:var(--navy);
  padding:5rem 5vw;
  display:grid;grid-template-columns:1fr 1fr;
  align-items:center;gap:4rem;
}
.tv-text .section-tag{background:rgba(29,158,117,0.2);color:var(--teal-mid)}
.tv-text .section-title{color:#fff}
.tv-text .section-desc{color:rgba(255,255,255,.65)}
.tv-mock{
  background:#111;border-radius:16px;overflow:hidden;
  border:3px solid #2a2a2a;
  box-shadow:0 0 0 6px #1a1a1a,0 24px 60px rgba(0,0,0,.5);
}
.tv-bar{
  background:var(--teal);padding:.8rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;
}
.tv-bar-title{font-family:var(--font-display);font-size:.9rem;font-weight:700;color:#fff;letter-spacing:.05em}
.tv-time{font-size:.8rem;color:rgba(255,255,255,.7);font-variant-numeric:tabular-nums}
.tv-body{padding:1.5rem;display:flex;flex-direction:column;gap:.8rem}
.tv-calling{
  background:rgba(29,158,117,0.2);border:1px solid rgba(29,158,117,.4);
  border-radius:12px;padding:1.2rem 1.5rem;
  display:flex;align-items:center;gap:1rem;
}
.tv-calling-label{font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;color:var(--teal-mid);font-weight:600;font-family:var(--font-display)}
.tv-calling-name{font-family:var(--font-display);font-size:1.6rem;font-weight:700;color:#fff;line-height:1.1}
.tv-calling-room{
  margin-left:auto;background:var(--teal);color:#fff;
  padding:.5rem 1rem;border-radius:8px;text-align:center;
  font-family:var(--font-display);font-size:.8rem;font-weight:700;
}
.tv-queue{display:grid;gap:.5rem}
.tv-queue-item{
  background:rgba(255,255,255,0.05);border-radius:8px;
  padding:.6rem 1rem;display:flex;align-items:center;gap:.8rem;
  justify-content:space-between;
}
.tv-q-num{font-family:var(--font-display);font-size:1rem;font-weight:700;color:rgba(255,255,255,.4);width:36px}
.tv-q-name{font-size:.85rem;color:rgba(255,255,255,.6);flex:1;padding:0 .8rem}
.tv-q-status{font-size:.72rem;padding:.2rem .6rem;border-radius:100px;font-weight:600}

/* AGENDA */
.agenda-section{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;
}
.agenda-mock{
  background:#fff;border:1px solid rgba(15,110,86,0.12);
  border-radius:20px;padding:1.5rem;
  box-shadow:0 16px 60px rgba(4,52,44,0.08);
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.agenda-mock-inner{min-width:320px}
.agenda-tabs{display:flex;gap:.5rem;margin-bottom:1.5rem}
.agenda-tab{
  padding:.4rem 1rem;border-radius:8px;
  font-size:.82rem;font-weight:600;cursor:pointer;
  font-family:var(--font-display);
}
.agenda-tab.active{background:var(--teal);color:#fff}
.agenda-tab:not(.active){background:var(--gray-light);color:var(--gray-dark)}
.agenda-grid-head{
  display:grid;grid-template-columns:60px repeat(5,1fr);
  gap:4px;margin-bottom:4px;
}
.agenda-col-head{font-size:.7rem;font-weight:600;color:var(--gray-mid);text-align:center;padding:.3rem 0;font-family:var(--font-display)}
.agenda-row{display:grid;grid-template-columns:60px repeat(5,1fr);gap:4px;margin-bottom:4px}
.agenda-time{font-size:.72rem;color:var(--gray-mid);padding:.4rem .3rem;text-align:right;font-variant-numeric:tabular-nums}
.agenda-slot{height:36px;border-radius:6px;border:1px dashed rgba(15,110,86,0.15);position:relative}
.agenda-slot.filled{border:none;display:flex;align-items:center;padding:0 .5rem}
.slot-text{font-size:.65rem;font-weight:600;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.slot-online{position:absolute;top:3px;right:3px;width:6px;height:6px;border-radius:50%;background:var(--accent)}

/* PROCEDURES */
.procedures{background:var(--gray-light)}
.procedures-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.2rem;margin-top:3rem;
}
.proc-card{
  background:#fff;border-radius:16px;
  overflow:hidden;border:1px solid rgba(15,110,86,0.08);
  transition:transform .2s,box-shadow .2s;
  cursor:pointer;
}
.proc-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(4,52,44,0.12)}
.proc-thumb{
  height:110px;
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.proc-play{
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.9);
  display:flex;align-items:center;justify-content:center;
  position:relative;z-index:1;
}
.proc-play svg{width:16px;height:16px;fill:var(--teal);transform:translateX(1px)}
.proc-body{padding:1rem}
.proc-body h4{font-family:var(--font-display);font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:.3rem}
.proc-body p{font-size:.78rem;color:#4a6b60;line-height:1.5;font-weight:300}

/* LOCATION */
.location-section{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;
}
.map-mock{
  border-radius:20px;overflow:hidden;
  border:1px solid rgba(15,110,86,0.12);
  box-shadow:0 16px 60px rgba(4,52,44,0.08);
  background:var(--teal-pale);
  height:380px;position:relative;
}
.map-pin{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-60%);
  display:flex;flex-direction:column;align-items:center;
}
.map-pin-icon{
  width:48px;height:48px;border-radius:50%;
  background:var(--teal);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(15,110,86,0.4);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{box-shadow:0 4px 20px rgba(15,110,86,0.4)}50%{box-shadow:0 4px 36px rgba(15,110,86,0.6),0 0 0 12px rgba(15,110,86,0.1)}}
.map-pin-icon svg{width:24px;height:24px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round}
.map-pin-tail{width:3px;height:20px;background:var(--teal);border-radius:0 0 4px 4px}
.map-card{
  position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);
  background:#fff;border-radius:12px;padding:.8rem 1.2rem;
  width:calc(100% - 2rem);max-width:320px;
  box-shadow:0 8px 30px rgba(4,52,44,0.12);
  display:flex;align-items:center;gap:.8rem;
  flex-wrap:wrap;
}
.map-card-icon{width:36px;height:36px;border-radius:9px;background:var(--teal-pale);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.map-card-title{font-family:var(--font-display);font-size:.85rem;font-weight:700;color:var(--navy)}
.map-card-addr{font-size:.75rem;color:var(--gray-mid)}
.map-share{
  background:var(--teal);color:#fff;padding:.4rem .9rem;
  border-radius:6px;font-size:.75rem;font-weight:600;
  font-family:var(--font-display);margin-left:auto;cursor:pointer;
  border:none;
}

/* FINANCEIRO */
.finance-section{background:var(--gray-light)}
.finance-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.2rem;margin-top:3rem;
}
.finance-card{
  background:#fff;border-radius:16px;padding:1.5rem;
  border:1px solid rgba(15,110,86,0.08);
}
.finance-card-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem}
.finance-label{font-size:.78rem;color:var(--gray-mid);font-weight:500}
.finance-icon{width:34px;height:34px;border-radius:9px;display:flex;align-items:center;justify-content:center}
.finance-value{font-family:var(--font-display);font-size:1.6rem;font-weight:800;color:var(--navy);line-height:1}
.finance-change{font-size:.78rem;font-weight:600;margin-top:.4rem;display:flex;align-items:center;gap:.2rem}
.change-up{color:#1D9E75}
.change-down{color:#E24B4A}
.finance-chart{margin-top:1rem;height:40px;display:flex;align-items:flex-end;gap:4px}
.finance-bar{flex:1;border-radius:3px 3px 0 0;min-height:6px;transition:height .3s}

/* PLANOS */
.pricing{text-align:center}
.pricing-cards{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:3rem;max-width:960px;margin-inline:auto;
}
.pricing-card{
  background:#fff;border:1px solid rgba(15,110,86,0.12);
  border-radius:20px;padding:2.5rem 2rem;
  text-align:left;position:relative;
  transition:transform .2s,box-shadow .2s;
}
.pricing-card:hover{transform:translateY(-4px);box-shadow:0 20px 60px rgba(4,52,44,0.12)}
.pricing-card.featured{
  background:var(--teal);border-color:var(--teal);
  transform:scale(1.04);
}
.pricing-card.featured:hover{transform:scale(1.04) translateY(-4px)}
.pricing-badge{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--accent);color:var(--navy);
  font-family:var(--font-display);font-size:.72rem;font-weight:700;
  padding:.3rem .9rem;border-radius:100px;letter-spacing:.05em;
  white-space:nowrap;
}
.pricing-plan{font-family:var(--font-display);font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:.8rem}
.pricing-card:not(.featured) .pricing-plan{color:var(--teal)}
.pricing-card.featured .pricing-plan{color:rgba(255,255,255,.7)}
.pricing-price{font-family:var(--font-display);font-size:2.5rem;font-weight:800;color:var(--navy);line-height:1;margin-bottom:.3rem}
.pricing-card.featured .pricing-price{color:#fff}
.pricing-period{font-size:.82rem;color:var(--gray-mid);margin-bottom:1.5rem}
.pricing-card.featured .pricing-period{color:rgba(255,255,255,.6)}
.pricing-features{list-style:none;display:flex;flex-direction:column;gap:.7rem;margin-bottom:2rem}
.pricing-features li{display:flex;align-items:center;gap:.6rem;font-size:.88rem;color:var(--gray-dark);font-weight:400}
.pricing-card.featured .pricing-features li{color:rgba(255,255,255,.85)}
.pricing-features li::before{
  content:'';width:16px;height:16px;border-radius:50%;
  background:var(--teal-pale);flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230F6E56' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3 3 7-7'/%3E%3C/svg%3E");
  background-size:contain;
}
.pricing-card.featured .pricing-features li::before{
  background-color:rgba(255,255,255,0.2);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3 3 7-7'/%3E%3C/svg%3E");
}
.pricing-btn{
  display:block;text-align:center;padding:.8rem;
  border-radius:10px;font-family:var(--font-display);
  font-size:.9rem;font-weight:700;text-decoration:none;
  transition:all .2s;
}
.pricing-card:not(.featured) .pricing-btn{background:var(--teal-pale);color:var(--teal)}
.pricing-card:not(.featured) .pricing-btn:hover{background:var(--teal);color:#fff}
.pricing-card.featured .pricing-btn{background:#fff;color:var(--teal)}
.pricing-card.featured .pricing-btn:hover{background:var(--accent-light);color:var(--navy)}

/* CTA */
.cta-section{
  background:var(--navy);text-align:center;
  padding:6rem 5vw;
  position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;
  top:50%;left:50%;transform:translate(-50%,-50%);
  width:800px;height:800px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(29,158,117,.12) 0%,transparent 70%);
  pointer-events:none;
}
.cta-section h2{
  font-family:var(--font-display);
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:800;color:#fff;
  letter-spacing:-.03em;margin-bottom:1rem;
}
.cta-section p{font-size:1.1rem;color:rgba(255,255,255,.65);margin-bottom:2.5rem;font-weight:300}
.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn-white{
  background:#fff;color:var(--teal);
  padding:.9rem 2.2rem;border-radius:10px;
  font-family:var(--font-display);font-size:1rem;font-weight:700;
  text-decoration:none;transition:all .2s;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover{background:var(--accent);color:var(--navy);transform:translateY(-2px)}
.btn-outline-white{
  border:1.5px solid rgba(255,255,255,.35);color:#fff;
  padding:.9rem 2rem;border-radius:10px;
  font-family:var(--font-display);font-size:1rem;font-weight:600;
  text-decoration:none;transition:all .2s;
}
.btn-outline-white:hover{border-color:#fff;background:rgba(255,255,255,.08)}

/* FOOTER */
footer{
  background:#04221C;padding:3rem 5vw 2rem;
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;
}
.footer-brand .logo{margin-bottom:1rem}
.footer-brand p{font-size:.85rem;color:rgba(255,255,255,.45);line-height:1.6;font-weight:300;max-width:240px}
.footer-col h4{font-family:var(--font-display);font-size:.8rem;font-weight:700;color:rgba(255,255,255,.5);letter-spacing:.1em;text-transform:uppercase;margin-bottom:1rem}
.footer-col a{display:block;font-size:.88rem;color:rgba(255,255,255,.55);text-decoration:none;margin-bottom:.55rem;transition:color .2s}
.footer-col a:hover{color:var(--teal-mid)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding:1.5rem 5vw 1.5rem;background:#04221C;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;
}
.footer-bottom p{font-size:.8rem;color:rgba(255,255,255,.3)}

/* MAP GRID BG */
.map-grid{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background-image:
    linear-gradient(rgba(15,110,86,0.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,110,86,0.08) 1px,transparent 1px);
  background-size:32px 32px;
}

/* ANIMATIONS */
.fade-in{opacity:0;transform:translateY(24px);transition:opacity .6s,transform .6s}
.fade-in.visible{opacity:1;transform:none}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  right:1.25rem;
  bottom:1.25rem;
  z-index:120;
  display:flex;
  align-items:center;
  gap:.65rem;
  padding:.85rem 1.1rem .85rem .85rem;
  background:#25D366;
  color:#fff;
  border-radius:100px;
  text-decoration:none;
  box-shadow:0 8px 32px rgba(37,211,102,0.45);
  transition:transform .2s,box-shadow .2s,background .2s;
  font-family:var(--font-display);
  font-size:.88rem;
  font-weight:600;
}
.whatsapp-float svg{width:26px;height:26px;flex-shrink:0}
.whatsapp-float:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(37,211,102,0.55);
  background:#1ebe57;
  color:#fff;
}
.whatsapp-float:focus-visible{
  outline:2px solid var(--navy);
  outline-offset:3px;
}
@media(max-width:768px){
  .whatsapp-float{
    right:max(1rem,env(safe-area-inset-right));
    bottom:max(1rem,env(safe-area-inset-bottom));
    padding:.9rem;
    border-radius:50%;
  }
  .whatsapp-float__label{display:none}

  .nav-toggle{display:flex}

  .nav-menu{
    display:none;
    position:fixed;top:0;right:0;
    width:min(88vw,320px);height:100dvh;
    flex-direction:column;align-items:stretch;
    gap:0;padding:5rem 1.5rem 2rem;
    background:var(--white);
    box-shadow:-8px 0 40px rgba(4,52,44,0.12);
    z-index:111;
    overflow-y:auto;
  }
  .nav-menu.is-open{display:flex}
  .nav-menu-close{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;top:1rem;right:1rem;
    width:40px;height:40px;
    border:none;border-radius:10px;
    background:var(--teal-pale);
    color:var(--teal);
    font-size:1.5rem;line-height:1;
    cursor:pointer;
    touch-action:manipulation;
  }
  .nav-links{flex-direction:column;align-items:stretch;gap:0}
  .nav-links a{
    padding:.95rem 0;
    font-size:1rem;
    border-bottom:1px solid rgba(15,110,86,0.08);
  }
  .nav-cta{
    margin-top:1.25rem;
    text-align:center;
    padding:.85rem 1rem;
  }

  section,.tv-section,.finance-section,.cta-section{padding:3.5rem max(5vw,env(safe-area-inset-left))}
  .stats-bar{padding:2.5rem max(5vw,env(safe-area-inset-left));grid-template-columns:repeat(2,1fr);gap:1.25rem}
  .stat-num{font-size:2rem}

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding:6rem max(5vw,env(safe-area-inset-left)) 3rem;
    gap:2rem;
  }
  .hero h1{font-size:clamp(1.85rem,7vw,2.6rem)}
  .hero p{font-size:1rem;max-width:none;margin-bottom:1.75rem}
  .hero-eyebrow{font-size:.7rem;margin-bottom:1rem}
  .hero-buttons{flex-direction:column;width:100%}
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary{
    width:100%;
    justify-content:center;
  }
  .hero-visual{display:flex;margin-top:.5rem}
  .badge-float{display:none}
  .dashboard-mock{animation:none;max-width:100%}
  .dash-body{padding:1rem;gap:.5rem}
  .dash-card{padding:.75rem .5rem}
  .dash-card-num{font-size:1.2rem}
  .dash-card-label{font-size:.65rem}
  .dash-schedule{margin:0 1rem 1rem}
  .dash-item{flex-wrap:wrap;gap:.4rem .6rem;padding:.65rem .85rem}
  .dash-item-name{flex:1 1 100%;font-size:.78rem}
  .dash-item-time{margin-left:0}
  .dash-item-status{margin-left:auto}

  .features-grid,.procedures-grid,.finance-grid,.pricing-cards{grid-template-columns:1fr}
  .feature-card{padding:1.5rem}
  .pricing-card.featured{transform:none}
  .pricing-card.featured:hover{transform:translateY(-4px)}

  .tv-section,.agenda-section,.location-section{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .tv-bar{flex-wrap:wrap;gap:.5rem;padding:.75rem 1rem}
  .tv-bar-title{font-size:.78rem;line-height:1.3}
  .tv-calling{flex-wrap:wrap;padding:1rem}
  .tv-calling-name{font-size:1.25rem}
  .tv-calling-room{margin-left:0;margin-top:.25rem}
  .tv-q-name{font-size:.8rem;padding:0 .4rem}

  .map-mock{height:300px}
  .map-card{position:absolute;width:calc(100% - 1.5rem)}
  .map-share{width:100%;margin-left:0;text-align:center;margin-top:.25rem}

  footer{grid-template-columns:1fr 1fr;gap:2rem 1.5rem;padding:2.5rem max(5vw,env(safe-area-inset-left)) 1.5rem}
  .footer-brand{grid-column:1/-1}
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    padding:1.25rem max(5vw,env(safe-area-inset-left));
  }

  .cta-section{padding:4rem max(5vw,env(safe-area-inset-left))}
  .cta-section p{font-size:1rem;padding:0 .5rem}
  .cta-buttons{width:100%}
  .btn-white,.btn-outline-white{width:100%;text-align:center}
  .section-desc{max-width:none}
  .pricing .section-desc{padding:0}
}

@media(max-width:480px){
  .stats-bar{grid-template-columns:1fr}
  .stat-item{padding:.5rem}
  .dash-body{grid-template-columns:1fr}
  .dash-card{display:flex;align-items:center;gap:.75rem;text-align:left;padding:.85rem 1rem}
  .dash-card-icon{margin:0;flex-shrink:0}
  .dash-header-sub{display:none}
  footer{grid-template-columns:1fr}
  .tv-queue-item{flex-wrap:wrap;gap:.35rem}
  .tv-q-status{margin-left:auto}
  .finance-value{font-size:1.35rem}
  .pricing-price{font-size:2rem}
  .pricing-card{padding:2rem 1.35rem}
  .proc-thumb{height:96px}
  .agenda-tab{padding:.35rem .65rem;font-size:.75rem}
}
