/* =============================================
   ALEXSANDRO DOS SANTOS — CSS PREMIUM v2
   Paleta: #071B4D (azul), #18B43C (verde)
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #071B4D;
  --blue-mid:    #0B2460;
  --blue-light:  #1A3A7A;
  --green:       #18B43C;
  --green-dark:  #129930;
  --green-light: #22CC48;
  --white:       #FFFFFF;
  --bg:          #F3F6FB;
  --bg2:         #EBF0F9;
  --gray:        #78909C;
  --gray-light:  #E4EAF3;
  --text:        #1A2340;
  --text-light:  #5A6A8A;
  --gold:        #FFC107;
  --shadow-sm:   0 2px 10px rgba(7,27,77,.08);
  --shadow-md:   0 6px 28px rgba(7,27,77,.13);
  --shadow-lg:   0 12px 48px rgba(7,27,77,.18);
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --tr:          all .3s cubic-bezier(.4,0,.2,1);
  --font:        'Inter','Segoe UI',system-ui,sans-serif;
  --font-h:      'Montserrat','Inter',sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--tr); }
ul   { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); line-height: 1.2; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.9rem,4.5vw,3.2rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.6rem); }
p  { color: var(--text-light); line-height: 1.8; }

.hl-green { color: var(--green); }
.hl-white { color: var(--white); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  display: inline-block;
  background: rgba(24,180,60,.12);
  color: var(--green);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(24,180,60,.25);
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 580px; margin: 10px auto 0; }

/* ---------- BUTTONS ---------- */
/* Base button — todos os modificadores herdam automaticamente */
.btn,
.btn-green,
.btn-blue,
.btn-white,
.btn-outline,
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 34px; border-radius: 100px;
  font-size: .95rem; font-weight: 700; font-family: var(--font-h);
  cursor: pointer; border: none; outline: none;
  transition: var(--tr); white-space: nowrap;
  letter-spacing: .02em;
  text-decoration: none;
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(24,180,60,.40), 0 2px 8px rgba(24,180,60,.20);
  border: none;
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 10px 32px rgba(24,180,60,.55), 0 4px 12px rgba(24,180,60,.25);
  transform: translateY(-3px);
  color: var(--white);
}
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(7,27,77,.35);
  border: none;
}
.btn-blue:hover {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(7,27,77,.50);
  color: var(--white);
}
.btn-white { background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm); border: none; }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,180,60,.30); }
.btn-outline-white {
  background: rgba(255,255,255,.07); color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.16); border-color: var(--white); transform: translateY(-2px); color: var(--white); }
.btn-lg  { padding: 16px 44px; font-size: 1.05rem; }
.btn-sm  { padding: 9px 22px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--blue);
  height: 80px;
  box-shadow: 0 2px 20px rgba(7,27,77,.40);
  transition: var(--tr);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 20px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  height: 52px; width: 52px; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-h); font-size: .95rem; font-weight: 800;
  color: var(--white); letter-spacing: .02em;
}
.nav-logo-sub { font-size: .65rem; color: rgba(255,255,255,.65); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

/* Menu */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 7px 13px; font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.80); border-radius: 6px; transition: var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.12); }
.nav-link.active { color: var(--green); }

.nav-cta { display: flex; align-items: center; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, #0F2E6E 100%);
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(24,180,60,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
  padding: 60px 0;
}

/* Hero left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24,180,60,.15); color: var(--green);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(24,180,60,.30);
}
.hero-title { color: var(--white); margin-bottom: 18px; font-weight: 900; }
.hero-title .line-green {
  display: block; color: var(--green);
  text-shadow: 0 0 40px rgba(24,180,60,.35);
}
.hero-text { color: rgba(255,255,255,.80); font-size: 1.05rem; margin-bottom: 28px; max-width: 500px; }

.hero-checklist { margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.hero-check {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.90); font-size: .95rem; font-weight: 500;
}
.hero-check i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

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

/* Hero right */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-wrap {
  position: relative;
  animation: floatHero 5s ease-in-out infinite;
}
.hero-img { width: 100%; max-width: 440px; filter: drop-shadow(0 20px 50px rgba(0,0,0,.50)); }

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

/* ---------- BENEFITS BAR ---------- */
.benefits-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative; z-index: 2;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid var(--gray-light);
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--gray-light);
}
.benefit-item:last-child { border-right: none; }
.benefit-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0; color: var(--green);
}
.benefit-title { font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: 3px; }
.benefit-desc  { font-size: .82rem; color: var(--text-light); }

/* ---------- OPERATORS STRIP ---------- */
.operators-strip { background: var(--bg); padding: 48px 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.operators-label { text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
.operators-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px 32px; }
.op-logo-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 12px 20px;
  display: flex; align-items: center; justify-content: center;
  min-width: 110px; height: 64px;
  transition: var(--tr); cursor: pointer;
}
.op-logo-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.op-logo-card img { max-height: 38px; max-width: 100px; object-fit: contain; filter: grayscale(20%); transition: var(--tr); }
.op-logo-card:hover img { filter: none; }

/* ---------- STATS STRIP ---------- */
.stats-strip { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-value {
  font-family: var(--font-h); font-size: clamp(2.2rem,4vw,3.4rem);
  font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.70); font-weight: 500; }

/* ---------- FEATURES GRID ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-light);
  transition: var(--tr); position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left; transition: var(--tr);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; color: var(--blue);
}
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }

/* ---------- PLAN CARDS ---------- */
.plan-card {
  background: var(--white); border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--tr); position: relative;
}
.plan-card.featured { border-color: var(--green); box-shadow: var(--shadow-lg); }
.plan-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white); font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; padding: 4px 16px; border-radius: 50px;
}
.plan-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan-icon { font-size: 2rem; margin-bottom: 10px; }
.plan-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.plan-desc { font-size: .88rem; color: var(--text-light); margin-bottom: 20px; }
.plan-features { margin-bottom: 24px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 7px 0; font-size: .9rem; color: var(--text);
  border-bottom: 1px solid var(--gray-light);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); font-size: .85rem; flex-shrink: 0; margin-top: 3px; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
/* Botões dentro de plan-cards: compactos e full-width */
.plan-card-footer { padding-top: 20px; }
.plan-card-footer .btn-green,
.plan-card-footer a.btn-green {
  width: 100%; justify-content: center;
  padding: 13px 24px; font-size: .9rem;
}

/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-light);
  transition: var(--tr);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.blog-thumb {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.93); color: var(--blue);
  padding: 3px 12px; border-radius: 50px; font-size: .7rem; font-weight: 700; z-index: 1;
}
.blog-body { padding: 24px; }
.blog-date { font-size: .75rem; color: var(--gray); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: .87rem; color: var(--text-light); margin-bottom: 16px; }
.blog-link { color: var(--green); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 5px; transition: var(--tr); }
.blog-link:hover { gap: 9px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 20px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light); transition: var(--tr); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 14px; right: 22px;
  font-size: 5rem; line-height: 1; color: rgba(7,27,77,.06);
  font-family: Georgia,serif; font-weight: 900;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; font-size: .9rem; }
.testimonial-text { font-size: .9rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.t-name  { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: 1px; }
.t-role  { font-size: .75rem; color: var(--text-light); }

/* ---------- GOOGLE BADGE ---------- */
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 50px; padding: 10px 22px;
  font-size: .88rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: var(--tr);
}
.google-badge:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info h3 { margin-bottom: 10px; }
.contact-info p  { margin-bottom: 28px; }
.contact-item  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-icon  {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--blue); flex-shrink: 0;
}
.contact-label { font-size: .75rem; color: var(--text-light); font-weight: 500; margin-bottom: 1px; }
.contact-value { font-weight: 700; color: var(--text); }
.contact-social { display: flex; gap: 10px; margin-top: 28px; }
.csocial-btn {
  width: 42px; height: 42px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--tr); color: var(--white);
}
.csocial-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.csocial-btn.fb   { background: #1877F2; }
.csocial-btn.ig   { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.csocial-btn.li   { background: #0A66C2; }
.csocial-btn.gg   { background: #4285F4; }

/* Form */
.contact-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light); position: relative; overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.form-title   { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.form-subtitle{ font-size: .87rem; color: var(--text-light); margin-bottom: 28px; }
.form-group   { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-light);
  border-radius: var(--radius); font-size: .92rem; color: var(--text);
  background: var(--white); transition: var(--tr); font-family: var(--font); outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(24,180,60,.10); }
.form-control::placeholder { color: var(--gray); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%2378909C' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  padding: 120px 0 56px; text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .55rem; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-frame { background: linear-gradient(135deg, var(--blue), var(--green)); border-radius: var(--radius-xl); padding: 4px; }
.about-inner { background: var(--white); border-radius: calc(var(--radius-xl) - 4px); padding: 36px; text-align: center; }
.about-avatar { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; margin: 0 auto 16px; color: var(--white); font-weight: 800; }
.about-name { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.about-role { color: var(--blue); font-weight: 600; font-size: .9rem; margin-bottom: 18px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.achip { background: var(--bg); color: var(--text); padding: 5px 13px; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.achip.blue { background: rgba(7,27,77,.08); color: var(--blue); }

.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.mvv-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--tr); }
.mvv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mvv-icon  { font-size: 2.2rem; margin-bottom: 12px; }
.mvv-title { font-size: .85rem; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--green)); }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--green); }
.tl-date  { font-size: .75rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.tl-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.tl-desc  { font-size: .85rem; color: var(--text-light); }

/* ---------- INSTAGRAM FEED ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 10px; margin-bottom: 28px; }
.insta-post {
  aspect-ratio: 1; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; position: relative; overflow: hidden; cursor: pointer; transition: var(--tr);
}
.insta-post:hover { transform: scale(1.04); }
.insta-overlay { position: absolute; inset: 0; background: rgba(7,27,77,.80); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--tr); color: var(--white); gap: 5px; font-size: .82rem; font-weight: 600; }
.insta-overlay i { font-size: 1.3rem; }
.insta-post:hover .insta-overlay { opacity: 1; }
.insta-post-text { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top,rgba(0,0,0,.6),transparent); padding: 12px 10px 8px; color: var(--white); font-size: .72rem; line-height: 1.3; }

/* ---------- ADMIN CARD (Mount Hermon, Qualicorp…) ---------- */
.admin-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.admin-card {
  background: var(--white); border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--tr); position: relative;
}
.admin-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.admin-icon { font-size: 2.2rem; margin-bottom: 10px; }
.admin-name { font-size: 1.15rem; font-weight: 800; color: var(--blue); margin-bottom: 6px; }
.admin-desc { font-size: .88rem; color: var(--text-light); margin-bottom: 20px; }
.admin-features { margin-bottom: 22px; }
.admin-features li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: .88rem; color: var(--text); border-bottom: 1px solid var(--bg); }
.admin-features li:last-child { border-bottom: none; }
.admin-features li i { color: var(--green); font-size: .8rem; flex-shrink: 0; margin-top: 4px; }

/* ---------- BADGE ---------- */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 13px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge-blue  { background: rgba(7,27,77,.08);  color: var(--blue); }
.badge-green { background: rgba(24,180,60,.10); color: var(--green-dark); }
.badge-gray  { background: var(--bg);           color: var(--text-light); }

/* ---------- FOOTER ---------- */
footer { background: var(--blue); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 46px; width: 46px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }
.footer-logo-name { font-family: var(--font-h); font-size: .9rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.footer-logo-sub  { font-size: .63rem; color: rgba(255,255,255,.50); }
.footer-desc { color: rgba(255,255,255,.55); font-size: .87rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 9px; }
.fsocial-btn { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .95rem; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); transition: var(--tr); border: 1px solid rgba(255,255,255,.10); }
.fsocial-btn:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-heading { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.60); font-size: .87rem; display: flex; align-items: center; gap: 6px; transition: var(--tr); }
.footer-links a:hover { color: var(--green); padding-left: 3px; }
.footer-links a i { font-size: .6rem; }
.fcontact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: rgba(255,255,255,.60); font-size: .85rem; }
.fcontact-item i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.fcontact-item strong { display: block; color: rgba(255,255,255,.85); font-size: .87rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.38); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.38); font-size: .78rem; transition: var(--tr); }
.footer-bottom-links a:hover { color: var(--green); }

/* ---------- WA FLOAT ---------- */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #20ba5a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.52);
  cursor: pointer; transition: var(--tr); text-decoration: none; position: relative;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.68); }
.wa-btn::before { content: ''; position: absolute; inset: -5px; border: 2px solid rgba(37,211,102,.40); border-radius: 50%; animation: pulseRing 2s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }
.wa-tooltip { background: var(--white); color: var(--text); padding: 9px 17px; border-radius: 50px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-md); white-space: nowrap; border: 1px solid var(--gray-light); animation: fadeSlide .3s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- SCROLL TOP ---------- */
.scroll-top { position: fixed; bottom: 104px; right: 28px; width: 42px; height: 42px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .95rem; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--tr); opacity: 0; pointer-events: none; z-index: 998; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--blue-light); transform: translateY(-3px); }

/* ---------- LOADER ---------- */
.page-loader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; transition: opacity .4s ease; }
.loader-logo { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--green)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; animation: pulse 1.5s ease-in-out infinite; }
.loader-img { height: 60px; object-fit: contain; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.loader-bar { width: 120px; height: 3px; background: var(--gray-light); border-radius: 3px; overflow: hidden; }
.loader-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue), var(--green)); animation: load 1.2s ease forwards; border-radius: 3px; }
@keyframes load { to { width: 100%; } }

/* ---------- NOTIFICATION ---------- */
.notification { position: fixed; top: 90px; right: 22px; z-index: 9998; background: var(--white); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--green); display: flex; align-items: center; gap: 10px; min-width: 270px; max-width: 340px; transform: translateX(120%); transition: var(--tr); font-size: .88rem; font-weight: 500; }
.notification.show { transform: translateX(0); }
.notification i { font-size: 1.1rem; color: var(--green); flex-shrink: 0; }

/* ---------- ANIMATE ON SCROLL ---------- */
.aos { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.aos.d1 { transition-delay: .1s; }
.aos.d2 { transition-delay: .2s; }
.aos.d3 { transition-delay: .3s; }
.aos.d4 { transition-delay: .4s; }
.aos.in { opacity: 1; transform: translateY(0); }
.aos-visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ========================================
   NOVOS COMPONENTES v3 PREMIUM
   ======================================== */

/* --- AOS visible state (used by JS) --- */
.aos { transition: opacity .65s ease, transform .65s ease; }

/* --- Section Pad --- */
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--bg2); }

/* --- Section Tag --- */
.section-tag {
  display: inline-block;
  background: rgba(24,180,60,.10);
  color: var(--green-dark);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 10px;
  border: 1px solid rgba(24,180,60,.22);
}
.hero .section-tag { background: rgba(24,180,60,.15); color: var(--green-light); border-color: rgba(24,180,60,.35); }

/* --- Highlight --- */
.highlight { color: var(--green); }

/* --- HEADER PREMIUM NEW --- */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--blue);
  height: 80px;
  box-shadow: 0 2px 20px rgba(7,27,77,.45);
  transition: var(--tr);
}
.main-header.scrolled { box-shadow: 0 4px 30px rgba(7,27,77,.55); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 20px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  height: 52px; width: 52px; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-h); font-size: .85rem; font-weight: 800;
  color: var(--white); letter-spacing: .03em; line-height: 1.25;
}
.brand-sub { font-size: .6rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }

/* Nav Desktop */
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop .nav-link {
  padding: 7px 13px; font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.80); border-radius: 6px; transition: var(--tr);
}
.nav-desktop .nav-link:hover { color: var(--white); background: rgba(255,255,255,.10); }
.nav-desktop .nav-link.active { color: var(--green); background: rgba(24,180,60,.10); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-header-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white); padding: 10px 24px; border-radius: 100px;
  font-size: .85rem; font-weight: 700; font-family: var(--font-h);
  box-shadow: 0 4px 16px rgba(24,180,60,.40);
  transition: var(--tr); white-space: nowrap; letter-spacing: .02em;
}
.btn-header-wa:hover {
  background: var(--blue-mid);
  box-shadow: 0 4px 16px rgba(7,27,77,.40);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-header-wa span { display: block; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--tr);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 24px 16px;
  background: var(--blue-mid);
  border-top: 1px solid rgba(255,255,255,.08);
  position: absolute; top: 80px; left: 0; right: 0;
  box-shadow: 0 8px 28px rgba(7,27,77,.40);
  transform: translateY(-10px); opacity: 0;
  pointer-events: none; transition: var(--tr);
  z-index: 999;
}
.mobile-nav.open {
  display: flex; transform: translateY(0); opacity: 1; pointer-events: all;
}
.mobile-nav .nav-link {
  padding: 11px 14px; color: rgba(255,255,255,.80);
  font-size: .9rem; font-weight: 600; border-radius: 8px; transition: var(--tr);
}
.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active { color: var(--green); background: rgba(24,180,60,.10); }
.mobile-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white); padding: 13px 28px; border-radius: 100px;
  font-weight: 700; font-size: .9rem; margin-top: 8px;
  box-shadow: 0 4px 16px rgba(24,180,60,.35); letter-spacing: .02em;
  transition: var(--tr);
}
.mobile-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,180,60,.50); color: var(--white); }

/* Nav Overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.50); z-index: 998;
}
.nav-overlay.visible { display: block; }

/* --- HERO NEW --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, #0F2E6E 100%);
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 60px 0;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24,180,60,.15); color: var(--green-light);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 22px;
  border: 1px solid rgba(24,180,60,.30);
}
.hero-title { color: var(--white); margin-bottom: 18px; font-weight: 900; }
.hero-title .highlight { text-shadow: 0 0 40px rgba(24,180,60,.35); }
.hero-sub { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 28px; max-width: 500px; }
.hero-sub strong { color: var(--white); }
.hero-checklist { margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.hero-checklist li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.88); font-size: .95rem; font-weight: 500;
}
.hero-checklist li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-hero {
  padding: 16px 38px; font-size: 1.02rem; font-family: var(--font-h);
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(24,180,60,.45), 0 2px 8px rgba(0,0,0,.10);
  letter-spacing: .025em;
}
.hero-trust {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.70); font-size: .82rem; font-weight: 500; }
.trust-item i { color: var(--green); }
.trust-stars { color: var(--gold); font-size: 1rem; }
.trust-divider { width: 1px; height: 22px; background: rgba(255,255,255,.15); }

/* Hero Image Col */
.hero-image-col { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-img-wrapper {
  position: relative;
  animation: floatHero2 5s ease-in-out infinite;
}
@keyframes floatHero2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-shield-img {
  max-width: 430px;
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(7,27,77,.35)) drop-shadow(0 8px 20px rgba(24,180,60,.15));
  object-fit: contain;
}
.hero-float-badge {
  position: absolute; bottom: 10px; right: -20px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  border: 2px solid var(--green); border-radius: var(--radius);
  padding: 14px 18px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.float-badge-inner { display: flex; flex-direction: column; align-items: center; line-height: 1.2; color: var(--white); }
.badge-num { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: var(--green); }
.badge-txt { font-size: .72rem; color: rgba(255,255,255,.7); }
.hero-float-stat {
  position: absolute;
  background: var(--white); border-radius: var(--radius);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
}
.stat-left  { top: 40px; left: -30px; }
.stat-right { top: 130px; right: -30px; }
.hero-float-stat i { color: var(--green); font-size: 1.3rem; }
.hero-float-stat strong { display: block; font-weight: 800; color: var(--text); font-size: .95rem; line-height: 1.2; }
.hero-float-stat small { font-size: .72rem; color: var(--text-light); }

/* --- BENEFITS BAR NEW --- */
.benefits-bar { background: var(--white); box-shadow: var(--shadow-md); position: relative; z-index: 2; }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.benefit-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--gray-light);
  transition: var(--tr);
}
.benefit-card:last-child { border-right: none; }
.benefit-card:hover { background: var(--bg); }
.benefit-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.09));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0; color: var(--green);
}
.benefit-text h3 { font-size: .93rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.benefit-text p { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

/* --- OPERATORS STRIP NEW --- */
.operators-strip { background: var(--white); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { max-width: 580px; margin: 0 auto; }
.op-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.op-logo-card {
  background: var(--white); border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 16px 20px;
  display: flex; align-items: center; justify-content: center;
  height: 80px; transition: var(--tr); cursor: default;
}
.op-logo-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(24,180,60,.15);
  transform: translateY(-4px);
}
.op-logo-card img {
  max-height: 48px; max-width: 110px;
  object-fit: contain; filter: grayscale(20%);
  transition: var(--tr);
}
.op-logo-card:hover img { filter: none; }

/* Admin Section */
.admin-section { margin-top: 48px; text-align: center; }
.admin-title { font-size: 1.2rem; margin-bottom: 8px; }
.admin-sub { color: var(--text-light); margin-bottom: 28px; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.admin-card {
  background: var(--bg); border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; transition: var(--tr);
}
.admin-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.admin-card i { font-size: 2rem; color: var(--blue); margin-bottom: 10px; display: block; }
.admin-card strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--blue); margin-bottom: 6px; }
.admin-card > span { font-size: .85rem; color: var(--text-light); }
.admin-card ul { text-align: left; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.admin-card ul li { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--text); }
.admin-card ul li i { color: var(--green); font-size: .75rem; flex-shrink: 0; }
.admin-card.featured { border-color: var(--green); background: var(--white); }
.admin-card-icon { font-size: 2rem; color: var(--blue); margin-bottom: 10px; }
.admin-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.admin-card p { font-size: .85rem; color: var(--text-light); margin-bottom: 14px; }

/* --- STATS STRIP NEW --- */
.stats-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #0F2E6E 100%);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item {}
.stat-icon { font-size: 2.2rem; color: rgba(24,180,60,.7); margin-bottom: 10px; }
.stat-num {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px;
}
.stat-num span { font-family: var(--font-h); font-weight: 900; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.68); font-weight: 500; }

/* --- WHY SECTION --- */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-light);
  transition: var(--tr); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left; transition: var(--tr);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.why-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; color: var(--blue);
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .88rem; }

/* --- PLANS PREVIEW --- */
.plans-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-bottom: 36px; }
.plan-preview-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 2px solid var(--gray-light);
  transition: var(--tr); position: relative;
  display: flex; flex-direction: column;
}
.plan-preview-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan-preview-card.featured { border-color: var(--green); box-shadow: var(--shadow-lg); }
.plan-preview-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white); font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.plan-preview-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.09));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue); margin-bottom: 16px;
}
.plan-preview-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.plan-preview-card > p { font-size: .87rem; margin-bottom: 18px; }
.plan-preview-card ul { margin-bottom: 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.plan-preview-card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: .87rem; color: var(--text);
}
.plan-preview-card ul li i { color: var(--green); font-size: .8rem; flex-shrink: 0; }
.plans-cta-center { text-align: center; }
/* Botões dentro de plan-preview-card: full-width compactos */
.plan-preview-card > .btn-green,
.plan-preview-card > a.btn-green {
  width: 100%; justify-content: center;
  padding: 13px 24px; font-size: .9rem; margin-top: auto;
}

/* --- GOOGLE REVIEWS --- */
.google-reviews-section { background: var(--bg); }
.reviews-header { display: flex; align-items: center; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; justify-content: center; }
.google-badge { display: flex; align-items: center; gap: 16px; }
.google-rating { text-align: center; }
.rating-num { font-family: var(--font-h); font-size: 3rem; font-weight: 900; color: var(--blue); line-height: 1; display: block; }
.rating-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-intro { max-width: 420px; }
.reviews-intro h2 { margin-bottom: 8px; }
.reviews-intro p { margin-bottom: 16px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light); transition: var(--tr);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.review-card blockquote { font-size: .9rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: var(--white); flex-shrink: 0;
}
.review-author strong { display: block; font-weight: 700; font-size: .9rem; color: var(--text); }
.review-author span { font-size: .75rem; color: var(--text-light); }

/* --- INSTAGRAM SECTION NEW --- */
.instagram-section { background: var(--bg2); }
.ig-feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 10px; margin-bottom: 24px; }
.ig-post { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; position: relative; display: block; }
.ig-post img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr); }
.ig-post:hover img { transform: scale(1.05); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(7,27,77,.75); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.8rem; opacity: 0; transition: var(--tr);
}
.ig-post:hover .ig-overlay { opacity: 1; }
.ig-follow-cta { text-align: center; }

/* --- BLOG PREVIEW NEW --- */
.blog-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-bottom: 36px; }
.blog-cta-center { text-align: center; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-light); transition: var(--tr);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.blog-card-img-link { display: block; overflow: hidden; height: 200px; }
.blog-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr); }
.blog-card:hover .blog-card-img-link img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-tag {
  background: rgba(7,27,77,.08); color: var(--blue);
  padding: 3px 12px; border-radius: 50px; font-size: .7rem; font-weight: 700;
}
.blog-date { font-size: .75rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 9px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body > p { font-size: .87rem; margin-bottom: 14px; }
.blog-read-more { color: var(--green); font-weight: 700; font-size: .87rem; display: inline-flex; align-items: center; gap: 5px; }
.blog-read-more:hover { gap: 9px; }

/* Article Full */
.article-full { max-width: 760px; margin: 0 auto; }
.article-header { margin-bottom: 32px; }
.article-header h1 { margin: 10px 0 12px; }
.article-meta { display: flex; gap: 20px; font-size: .82rem; color: var(--text-light); }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-body h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.article-body p { margin-bottom: 16px; line-height: 1.9; }
.article-body ol, .article-body ul { margin: 16px 0 20px 24px; }
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-cta { background: var(--bg); border-radius: var(--radius-lg); padding: 28px; margin-top: 40px; text-align: center; }
.article-cta p { margin-bottom: 16px; font-weight: 600; }

/* --- CTA SECTION NEW --- */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #0F2E6E 100%);
  padding: 72px 0; overflow: hidden; position: relative;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  display: flex; align-items: center; gap: 40px;
  position: relative; z-index: 1; flex-wrap: wrap; justify-content: center;
}
.cta-shield { width: 100px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); flex-shrink: 0; }
.cta-content { text-align: center; flex: 1; min-width: 260px; }
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- FOOTER PREMIUM NEW --- */
.main-footer { background: var(--blue); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-link img { filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.footer-brand-name { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.footer-brand-sub { font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.footer-desc { color: rgba(255,255,255,.55); font-size: .87rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65); transition: var(--tr);
  border: 1px solid rgba(255,255,255,.10);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { color: rgba(255,255,255,.60); font-size: .87rem; transition: var(--tr); }
.footer-links li a:hover { color: var(--green); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.60); font-size: .85rem; }
.footer-contact-list li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,.70); transition: var(--tr); }
.footer-contact-list li a:hover { color: var(--green); }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px; font-size: .88rem;
  font-weight: 700; letter-spacing: .02em; margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; margin-bottom: 4px; }

/* --- WA FLOAT NEW --- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-float img {
  width: 62px; height: 62px; border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,.52);
  transition: var(--tr); cursor: pointer;
  animation: pulseRingImg 2.5s ease-out infinite;
}
@keyframes pulseRingImg {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.52); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.15); }
}
.wa-float img:hover { transform: scale(1.12); }
.wa-float-tooltip {
  background: var(--white); color: var(--text);
  padding: 8px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-md); white-space: nowrap;
  border: 1px solid var(--gray-light);
  animation: fadeSlide2 .3s ease;
  display: none;
}
.wa-float:hover .wa-float-tooltip { display: block; }
@keyframes fadeSlide2 { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 998;
  width: 42px; height: 42px; background: var(--blue); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer; border: none;
  box-shadow: var(--shadow-md); transition: var(--tr);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--blue-light); transform: translateY(-3px); }

/* --- PAGE HERO NEW --- */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #0F2E6E 100%);
  padding: 130px 0 64px; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* --- PAGE LOADER NEW --- */
.page-loader {
  position: fixed; inset: 0; background: var(--white);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px; transition: opacity .5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.loader-inner img { animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.loader-bar { width: 120px; height: 3px; background: var(--gray-light); border-radius: 3px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); width: 0; animation: loaderFill 1.8s ease forwards; border-radius: 3px; }
@keyframes loaderFill { to { width: 100%; } }

/* --- ABOUT PAGE --- */
.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.about-img-wrapper {
  position: relative; display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--green)); border-radius: var(--radius-xl); padding: 4px;
}
.about-img-wrapper img { width: 100%; border-radius: calc(var(--radius-xl) - 4px); object-fit: cover; }
.about-exp-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius); padding: 14px 18px;
  text-align: center; color: var(--white); box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.badge-big { font-family: var(--font-h); font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.about-exp-badge > span:last-child { font-size: .72rem; line-height: 1.3; opacity: .85; }
.about-story-text .lead-text { font-size: 1.05rem; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.about-story-text p { margin-bottom: 14px; }
.about-highlights { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.ab-highlight { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text); font-weight: 500; }
.ab-highlight i { color: var(--green); flex-shrink: 0; }
.intro-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.intro-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text); }
.intro-list li i { color: var(--green); flex-shrink: 0; }

/* MVV Cards */
.mvv-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); padding: 32px; text-align: center; transition: var(--tr); }
.mvv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mvv-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.mvv-icon.missao { background: linear-gradient(135deg, rgba(7,27,77,.1), rgba(24,180,60,.12)); color: var(--blue); }
.mvv-icon.visao  { background: linear-gradient(135deg, rgba(24,180,60,.1), rgba(7,27,77,.08)); color: var(--green-dark); }
.mvv-icon.valores { background: linear-gradient(135deg, rgba(7,27,77,.08), rgba(24,180,60,.15)); color: var(--blue-light); }
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mvv-section { background: var(--bg2); }
.mvv-card h3 { margin-bottom: 12px; }

/* Timeline */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline-section { background: var(--white); }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--green)); transform: translateX(-50%); }
.timeline-item { position: relative; width: 50%; padding-bottom: 32px; }
.timeline-item.left  { padding-right: 40px; text-align: right; }
.timeline-item.right { padding-left: 40px; left: 50%; }
.timeline-dot {
  position: absolute; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-item.left  .timeline-dot { right: -7px; }
.timeline-item.right .timeline-dot { left: -7px; }
.timeline-content { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 18px 20px; }
.timeline-year { font-size: .75rem; font-weight: 700; color: var(--green); display: block; margin-bottom: 4px; }
.timeline-content h4 { font-size: .95rem; color: var(--text); margin-bottom: 5px; }
.timeline-content p { font-size: .83rem; }

/* --- PLANS PAGE --- */
.plans-intro { background: var(--white); }
.plans-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.plans-intro-img img { max-width: 380px; filter: drop-shadow(0 12px 32px rgba(0,0,0,.15)); margin: 0 auto; }
.plan-card { background: var(--white); border: 2px solid var(--gray-light); border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr); position: relative; display: flex; flex-direction: column; }
.plan-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan-card.featured { border-color: var(--green); box-shadow: var(--shadow-lg); }
.plan-card-popular { background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white); text-align: center; padding: 8px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.plan-card-header { padding: 28px 28px 16px; border-bottom: 1px solid var(--gray-light); }
.plan-card-icon { width: 52px; height: 52px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.09)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--blue); margin-bottom: 14px; }
.plan-card-header h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.plan-card-header p { font-size: .85rem; }
.plan-card-body { padding: 20px 28px; flex: 1; }
.plan-features { display: flex; flex-direction: column; gap: 0; }
.plan-features li { display: flex; align-items: center; gap: 9px; padding: 8px 0; font-size: .88rem; color: var(--text); border-bottom: 1px solid var(--gray-light); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); font-size: .8rem; flex-shrink: 0; }
.plan-card-footer { padding: 20px 28px; border-top: 1px solid var(--gray-light); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; transition: var(--tr); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--green); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--blue); border-bottom: 1px solid var(--gray-light); }
.faq-item:hover summary { background: var(--bg); }
.faq-answer { padding: 18px 22px; font-size: .9rem; color: var(--text-light); line-height: 1.8; }

/* --- DEPOIMENTOS --- */
.google-badge-section { background: var(--white); }
.google-badge-card {
  background: linear-gradient(135deg, var(--bg), var(--white));
  border: 2px solid var(--gray-light); border-radius: var(--radius-xl);
  padding: 40px 48px; display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center; box-shadow: var(--shadow-md);
}
.google-badge-left { text-align: center; }
.google-badge-left img { margin-bottom: 10px; }
.google-badge-left h2 { font-size: 1rem; color: var(--text); }
.google-badge-center { text-align: center; }
.big-rating { font-family: var(--font-h); font-size: 4.5rem; font-weight: 900; color: var(--blue); display: block; line-height: 1; }
.big-stars { color: var(--gold); font-size: 1.8rem; letter-spacing: 3px; margin: 6px 0; }
.google-badge-center p { font-size: .85rem; color: var(--text-light); max-width: 220px; }
.google-badge-right { display: flex; flex-direction: column; gap: 10px; }
.testimonials-section { background: var(--bg); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light); transition: var(--tr); position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.test-quote { font-size: 2.5rem; line-height: 1; color: rgba(24,180,60,.25); margin-bottom: 4px; }
.testimonial-card blockquote { font-size: .9rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.test-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; color: var(--white); flex-shrink: 0;
}
.test-info strong { display: block; font-size: .9rem; color: var(--text); font-weight: 700; }
.test-info span { font-size: .75rem; color: var(--text-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; margin-bottom: 40px; }
.google-reviews-cta { background: var(--white); border-radius: var(--radius-xl); padding: 32px 40px; border: 1px solid var(--gray-light); }
.google-reviews-cta-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.g-cta-text h3 { font-size: 1.1rem; margin-bottom: 6px; }
.g-cta-text p { font-size: .87rem; max-width: 380px; }

/* --- CONTACT PAGE --- */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 { margin-bottom: 8px; }
.contact-form {
  display: flex; flex-direction: column; gap: 16px;
}
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-wrapper {
  position: relative; display: flex; align-items: center;
}
.input-wrapper > i:first-child {
  position: absolute; left: 14px; color: var(--text-light); font-size: .9rem; pointer-events: none; z-index: 1;
}
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%; padding: 12px 16px 12px 42px;
  border: 2px solid var(--gray-light); border-radius: var(--radius);
  font-size: .92rem; color: var(--text); background: var(--white);
  transition: var(--tr); font-family: var(--font); outline: none;
  appearance: none;
}
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(24,180,60,.10);
}
.textarea-wrapper { align-items: flex-start; }
.textarea-wrapper > i:first-child { top: 14px; }
.input-wrapper textarea { resize: vertical; }
.select-wrapper select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%2378909C' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.btn-submit {
  width: 100%; justify-content: center; padding: 15px;
  font-size: 1rem; border-radius: var(--radius);
}
.form-note { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; margin-top: -4px; }
.form-note i { color: var(--green); }
.contact-info-header { margin-bottom: 24px; }
.contact-info-header h3 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg); border-radius: var(--radius);
  padding: 16px; border: 1px solid var(--gray-light); transition: var(--tr);
}
.contact-info-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.contact-info-card.wa-card { background: rgba(37,211,102,.07); border-color: rgba(37,211,102,.25); }
.ci-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7,27,77,.07), rgba(24,180,60,.09));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue); flex-shrink: 0;
}
.contact-info-card.wa-card .ci-icon { background: rgba(37,211,102,.15); color: #25D366; }
.ci-text { display: flex; flex-direction: column; gap: 2px; }
.ci-label { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); }
.ci-value { font-weight: 700; color: var(--text); font-size: .92rem; transition: var(--tr); }
.ci-value:hover { color: var(--green); }
.ci-sub { font-size: .72rem; color: var(--text-light); }
.schedule-card { background: var(--bg); border-radius: var(--radius-lg); padding: 20px 22px; margin-bottom: 20px; border: 1px solid var(--gray-light); }
.schedule-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.schedule-card h4 i { color: var(--green); }
.schedule-list { display: flex; flex-direction: column; gap: 10px; }
.schedule-list li { display: flex; justify-content: space-between; align-items: center; font-size: .87rem; color: var(--text-light); padding-bottom: 8px; border-bottom: 1px solid var(--gray-light); }
.schedule-list li:last-child { border-bottom: none; padding-bottom: 0; }
.schedule-list li strong { color: var(--text); font-weight: 700; }
.contact-social h4 { font-size: .85rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.contact-social-btns { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); transition: var(--tr);
}
.social-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.social-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-btn.facebook  { background: #1877F2; }
.social-btn.linkedin  { background: #0A66C2; }
.social-btn.whatsapp  { background: #25D366; }

/* Plans Intro */
.plans-intro-grid .aos { max-width: 560px; }

/* --- UTILITIES --- */
.text-center { text-align: center; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--bg); }
.bg-blue   { background: var(--blue); }
.mt-12  { margin-top: 12px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mt-48  { margin-top: 48px; }
.mb-0   { margin-bottom: 0 !important; }
.d-flex { display: flex; }
.ai-c   { align-items: center; }
.jc-c   { justify-content: center; }
.fw     { flex-wrap: wrap; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--bg); }
.bg-blue   { background: var(--blue); }
.mt-12  { margin-top: 12px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mt-48  { margin-top: 48px; }
.mb-0   { margin-bottom: 0 !important; }
.d-flex { display: flex; }
.ai-c   { align-items: center; }
.jc-c   { justify-content: center; }
.fw     { flex-wrap: wrap; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ============================================================
   PHASE 4 — CAROUSEL + NEW SECTIONS
   ============================================================ */

/* --- CAROUSEL SECTION --- */
.carousel-section { background: var(--white); }
.carousel-section .section-title { margin-bottom: 8px; }

.carousel-tabs {
  display: flex; gap: 4px; justify-content: center; margin-bottom: 40px;
  background: var(--bg); border-radius: 50px; padding: 5px;
  width: fit-content; margin-left: auto; margin-right: auto;
  border: 1px solid var(--gray-light);
}
.carousel-tab {
  padding: 10px 28px; border-radius: 50px;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  color: var(--text-light); transition: var(--tr);
  background: transparent; border: none; display: flex; align-items: center; gap: 8px;
}
.carousel-tab i { font-size: .9rem; }
.carousel-tab:hover { color: var(--blue); }
.carousel-tab.active {
  background: linear-gradient(135deg, var(--blue), #0F2E6E);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(7,27,77,.25);
}
.carousel-tab.active i { color: var(--green-light); }

.carousel-wrapper { display: none; }
.carousel-wrapper.active { display: block; }

.carousel-engine {
  position: relative; padding: 0 56px;
}
.carousel-track-outer {
  overflow: hidden; border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  padding: 12px 10px;
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box;
}
.carousel-logo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-light);
  padding: 24px 20px;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 120px;
  transition: var(--tr);
  box-shadow: 0 2px 10px rgba(7,27,77,.06);
}
.carousel-logo-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(7,27,77,.12);
  transform: translateY(-4px);
}
.carousel-logo-card img {
  max-width: 140px; max-height: 70px;
  object-fit: contain; object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.1) contrast(1.05);
  transition: var(--tr);
}
.carousel-logo-card:hover img { transform: scale(1.06); }

/* Arrow Buttons */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: var(--blue);
  transition: var(--tr); z-index: 2;
  box-shadow: 0 4px 14px rgba(7,27,77,.12);
}
.carousel-arrow:hover {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(7,27,77,.22);
}
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-arrow:disabled { opacity: .4; cursor: default; }
.carousel-arrow:disabled:hover { background: var(--white); color: var(--blue); border-color: var(--gray-light); }

/* Dots */
.carousel-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-light); border: none; cursor: pointer;
  transition: var(--tr); padding: 0;
}
.carousel-dot.active {
  background: var(--blue); width: 24px; border-radius: 4px;
}
.carousel-dot:hover { background: var(--green); }

/* --- ABOUT PREVIEW / EXPERTISE --- */
.about-preview-section { background: var(--bg); }
.about-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-preview-content { }
.about-preview-img-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-preview-img-wrap img {
  width: 100%; height: 420px; object-fit: cover; display: block;
}
.about-preview-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(7,27,77,.18); z-index: 1;
}
.about-preview-badge i {
  font-size: 1.6rem; color: var(--green);
}
.about-preview-badge strong {
  display: block; font-size: 1.35rem; font-weight: 900; color: var(--blue); line-height: 1;
}
.about-preview-badge span {
  font-size: .72rem; color: var(--text-light); font-weight: 600;
}
.lead-text {
  font-size: 1.05rem; color: var(--text); line-height: 1.9; margin-bottom: 20px;
}
.lead-text strong { color: var(--blue); font-weight: 700; }

/* Expertise Grid */
.expertise-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  margin: 28px 0;
}
.expertise-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 14px; border: 1px solid var(--gray-light);
  font-size: .84rem; font-weight: 600; color: var(--text);
  transition: var(--tr);
}
.expertise-item:hover {
  border-color: var(--green); color: var(--blue);
  box-shadow: var(--shadow-sm); transform: translateY(-2px);
}
.expertise-item i {
  font-size: .95rem; color: var(--green); flex-shrink: 0;
}

/* --- ESPECIALIDADES SECTION --- */
.especialidades-section { background: var(--white); }
.esp-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.esp-card {
  background: var(--bg); border-radius: var(--radius-xl);
  padding: 32px 28px; border: 1.5px solid var(--gray-light);
  transition: var(--tr); position: relative; overflow: hidden;
}
.esp-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: linear-gradient(180deg, var(--green), var(--blue));
  transition: height .4s ease;
}
.esp-card:hover::before { height: 100%; }
.esp-card:hover {
  border-color: var(--green); box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  background: var(--white);
}
.esp-icon {
  width: 54px; height: 54px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(7,27,77,.08), rgba(24,180,60,.10));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue); margin-bottom: 18px;
  transition: var(--tr);
}
.esp-card:hover .esp-icon {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
}
.esp-card h3 {
  font-size: 1rem; font-weight: 800; color: var(--blue);
  margin-bottom: 10px;
}
.esp-card p {
  font-size: .87rem; color: var(--text-light); line-height: 1.7; margin: 0;
}

/* --- DIFERENCIAIS SECTION --- */
.diferenciais-section { background: var(--bg); }
.dif-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.dif-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px 28px; border: 1.5px solid var(--gray-light);
  transition: var(--tr); position: relative; overflow: hidden;
}
.dif-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-5px);
  border-color: rgba(24,180,60,.30);
}
.dif-num {
  font-family: var(--font-h); font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: rgba(7,27,77,.05); position: absolute; top: 16px; right: 20px;
  pointer-events: none; user-select: none;
  transition: var(--tr);
}
.dif-card:hover .dif-num { color: rgba(24,180,60,.10); }
.dif-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue), #0F2E6E);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(7,27,77,.20);
  transition: var(--tr);
}
.dif-card:hover .dif-icon {
  background: linear-gradient(135deg, var(--green), #15a034);
  box-shadow: 0 6px 18px rgba(24,180,60,.30);
}
.dif-card h3 {
  font-size: 1rem; font-weight: 800; color: var(--blue); margin-bottom: 10px;
}
.dif-card p {
  font-size: .87rem; color: var(--text-light); line-height: 1.7; margin: 0;
}

/* --- INSTITUCIONAL MOSAIC --- */
.institucional-section { background: var(--white); overflow: hidden; }
.inst-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px; border-radius: var(--radius-xl); overflow: hidden;
  margin-top: 48px;
}
.inst-item {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  cursor: pointer;
}
.inst-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.inst-item:hover img { transform: scale(1.07); }
.inst-large { grid-column: span 2; }
.inst-tall  { grid-row: span 2; }
.inst-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,27,77,.70) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.inst-item:hover .inst-overlay { opacity: 1; }
.inst-overlay span {
  color: var(--white); font-size: .87rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}

/* Reviews CTA center */
.reviews-cta-center {
  text-align: center; padding: 40px 0 0;
}
.reviews-cta-center p {
  font-size: .95rem; color: var(--text-light); margin-bottom: 20px; max-width: 480px; margin-inline: auto;
}

/* Planos Operadoras Grid Update */
.op-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.op-logo-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-light); padding: 20px 16px;
  display: flex; align-items: center; justify-content: center;
  height: 100px; transition: var(--tr);
  box-shadow: 0 2px 8px rgba(7,27,77,.05);
}
.op-logo-card:hover {
  border-color: var(--green); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(7,27,77,.12);
}
.op-logo-card img {
  max-width: 120px; max-height: 55px;
  object-fit: contain; object-position: center;
  mix-blend-mode: multiply; filter: saturate(1.1) contrast(1.05);
  transition: var(--tr);
}
.op-logo-card:hover img { transform: scale(1.05); }

/* Operadoras section tabs */
.op-tabs-wrapper { margin-top: 20px; }
.op-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 32px; background: var(--bg); border-radius: 50px; padding: 5px; width: fit-content; margin-inline: auto; border: 1px solid var(--gray-light); }
.op-tab { padding: 9px 26px; border-radius: 50px; font-size: .88rem; font-weight: 700; cursor: pointer; color: var(--text-light); transition: var(--tr); background: transparent; border: none; display: flex; align-items: center; gap: 8px; }
.op-tab:hover { color: var(--blue); }
.op-tab.active { background: linear-gradient(135deg, var(--blue), #0F2E6E); color: var(--white); box-shadow: 0 4px 16px rgba(7,27,77,.25); }
.op-panel { display: none; }
.op-panel.active { display: block; }

/* Glassmorphism logo wrapper — Sobre página */
.traj-logo-glass {
  display: flex; align-items: center; justify-content: center;
  padding: 44px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255,255,255,.20);
  box-shadow: 0 24px 64px rgba(7,27,77,.18), 0 4px 20px rgba(24,180,60,.10), inset 0 1px 0 rgba(255,255,255,.30);
  position: relative; overflow: hidden;
}
.traj-logo-glass::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(24,180,60,.05) 0%, rgba(7,27,77,.05) 100%);
  border-radius: inherit; pointer-events: none;
}
.traj-logo-glass img {
  max-width: 320px; width: 100%;
  filter: drop-shadow(0 16px 40px rgba(7,27,77,.22)) drop-shadow(0 4px 16px rgba(24,180,60,.18));
  position: relative; z-index: 1;
  animation: floatHero2 6s ease-in-out infinite;
}
/* on light backgrounds (Sobre page bg-white) */
.bg-white .traj-logo-glass,
section.section-pad.bg-white .traj-logo-glass {
  background: rgba(7,27,77,.04);
  border: 1.5px solid rgba(7,27,77,.10);
  box-shadow: 0 20px 60px rgba(7,27,77,.10), 0 4px 20px rgba(24,180,60,.08);
}
/* Footer WA button — pill shape */
.footer-wa-btn {
  display: inline-flex !important; align-items: center; gap: 8px;
  border-radius: 100px !important;
}
/* btn-submit pill */
.btn-submit { border-radius: 100px !important; }

/* ---------- RESPONSIVE — PHASE 4 ---------- */
@media (max-width: 1024px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-preview-img-wrap img { height: 320px; }
  .esp-grid { grid-template-columns: repeat(2,1fr); }
  .dif-grid { grid-template-columns: repeat(2,1fr); }
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .inst-mosaic { grid-template-rows: 200px 200px; }
}
@media (max-width: 768px) {
  .carousel-engine { padding: 0 44px; }
  .carousel-tab { padding: 8px 18px; font-size: .8rem; }
  .esp-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .dif-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .expertise-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .inst-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .inst-large { grid-column: span 1; }
  .inst-tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .carousel-engine { padding: 0 36px; }
  .esp-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .inst-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .inst-large, .inst-tall { grid-column: span 1; grid-row: span 1; }
  .carousel-tabs { flex-direction: column; width: 90%; }
  .carousel-tab { justify-content: center; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  /* Old */
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .about-grid      { grid-template-columns: 1fr; }
  /* New */
  .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-col  { display: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 36px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .plans-intro-grid { grid-template-columns: 1fr; }
  .plans-intro-img  { display: none; }
  .benefits-grid   { grid-template-columns: 1fr 1fr; }
  .mvv-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header */
  .nav-desktop     { display: none; }
  .btn-header-wa span { display: none; }
  .hamburger       { display: flex; }
  /* Old */
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  /* Hero */
  .hero            { padding: 100px 0 56px; min-height: auto; }
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-image-col  { display: none; }
  /* Grids */
  .benefits-grid   { grid-template-columns: 1fr; }
  .benefit-card    { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .benefit-card:last-child { border-bottom: none; }
  .stats-grid      { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .mvv-grid        { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .form-row        { grid-template-columns: 1fr; }
  .section-pad     { padding: 56px 0; }
  .insta-grid      { grid-template-columns: repeat(3,1fr); }
  .ig-feed-grid    { grid-template-columns: repeat(3,1fr); }
  .google-badge-card { flex-direction: column; padding: 28px 24px; gap: 24px; }
  .timeline::before { left: 14px; }
  .timeline-item   { width: 100%; padding-left: 40px !important; padding-right: 0 !important; left: 0 !important; text-align: left !important; }
  .timeline-item .timeline-dot { left: 7px !important; right: auto !important; }
  .cta-inner       { flex-direction: column; }
  .cta-shield      { width: 72px; }
  .faq-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container       { padding: 0 14px; }
  .hero-title      { font-size: 1.8rem; }
  .features-grid   { grid-template-columns: 1fr; }
  .plans-grid      { grid-template-columns: 1fr; }
  .plans-preview-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-preview-grid { grid-template-columns: 1fr; }
  .admin-grid      { grid-template-columns: 1fr; }
  .wa-float        { bottom: 18px; right: 14px; }
  .ig-feed-grid    { grid-template-columns: repeat(2,1fr); }
  .reviews-header  { flex-direction: column; }
  .contact-social-btns { gap: 8px; }
  .section-pad     { padding: 44px 0; }
  .op-logos-grid   { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .header-actions .btn-header-wa { padding: 9px 16px; }
}



/* ===== CORREÇÕES HOSTINGER / PRODUÇÃO ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    font-family:'Inter',sans-serif;
    padding-top:96px;
}

/* HEADER */

.main-header{
    z-index:9999 !important;
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 0 100px;
}

.hero-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-image-col{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-shield-img{
    width:100%;
    max-width:560px;
    height:auto;
    object-fit:contain;
    display:block;
}

/* BOTÕES */

.btn,
.btn-green,
.btn-outline-white{
    border-radius:18px !important;
    transition:all .3s ease;
}

.btn:hover,
.btn-green:hover,
.btn-outline-white:hover{
    transform:translateY(-3px);
}

/* MOBILE NAV */

.mobile-nav{
    z-index:9998 !important;
}

.nav-overlay{
    z-index:9997 !important;
}

/* CAROUSEL */

.carousel-wrapper{
    overflow:hidden;
    position:relative;
}

.carousel-track{
    display:flex;
    gap:24px;
    will-change:transform;
}

/* RESPONSIVO */

@media(max-width:992px){

    .hero-inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-ctas{
        justify-content:center;
    }

    .hero-title{
        font-size:48px !important;
    }
}

@media(max-width:768px){

    body{
        padding-top:80px;
    }

    .hero{
        padding:120px 0 80px;
    }

    .hero-title{
        font-size:36px !important;
        line-height:1.1;
    }

    .hero-sub{
        font-size:16px;
    }

    .btn,
    .btn-green,
    .btn-outline-white{
        width:100%;
    }
}


/* ===== LOGOMARCAS RESPONSIVAS ===== */

.operadora-logo,
.operator-logo,
.partner-logo,
.logo-operadora,
.logos img,
.operadoras img,
.partners img{
    max-width:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
}

/* Desktop */
.operadora-logo,
.operator-logo,
.partner-logo{
    max-height:58px;
}

/* Tablet */
@media(max-width:992px){
    .operadora-logo,
    .operator-logo,
    .partner-logo{
        max-height:48px;
    }
}

/* Mobile */
@media(max-width:768px){
    .operadora-logo,
    .operator-logo,
    .partner-logo{
        max-height:42px;
    }

    .logos,
    .operadoras,
    .partners{
        gap:18px !important;
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
    }
}
