/* ============================================================
   SHAMAR 360 — Main Stylesheet
   Colors: Navy #0B2C5F | Gold #CFAF03 | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700;800&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy-dark:   #0B2C5F;
  --navy-mid:    #1F3B73;
  --navy-light:  #2A4F9E;
  --gold:        #CFAF03;
  --gold-light:  #E6C86E;
  --gold-dark:   #a88d00;
  --white:       #FFFFFF;
  --bg-light:    #F4F7FB;
  --bg-section:  #EEF2F7;
  --text-dark:   #0B2C5F;
  --text-body:   #3A4A6B;
  --text-muted:  #6B7A99;
  --whatsapp:    #25D366;
  --whatsapp-hv: #1EBE58;
  --success:     #2ECC71;
  --danger:      #E74C3C;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --shadow-sm: 0 2px 10px rgba(11,44,95,.10);
  --shadow-md: 0 6px 24px rgba(11,44,95,.15);
  --shadow-lg: 0 12px 48px rgba(11,44,95,.22);
  --shadow-gold: 0 2px 12px rgba(207,175,3,.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- Container ---- */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary — dourado sólido, sem gradiente, sem neon */
.btn-gold {
  background: var(--gold-dark);
  color: var(--navy-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 2px 10px rgba(168,141,0,.22);
}
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(168,141,0,.30);
  transform: translateY(-1px);
}
.btn-gold:active { transform: translateY(0); box-shadow: none; }

/* Secundário — borda dourada discreta */
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline-gold:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
}

/* Ghost branco — para fundos escuros */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}

/* WhatsApp — verde sem neon */
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hv);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ---- Section Spacing ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 52px;
  height: auto;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(207,175,3,.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 1.5rem 2rem;
  gap: 0.4rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: block;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 1rem; text-align: center; justify-content: center; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,44,95,.92) 0%,
    rgba(11,44,95,.75) 45%,
    rgba(11,44,95,.15) 80%
  );
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(207,175,3,.15);
  border: 1px solid rgba(207,175,3,.35);
  border-radius: 50px;
  padding: 0.38rem 1rem;
  margin-bottom: 1.4rem;
}
.hero-badge span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ============================================================
   FEATURES — 3 icon cards
   ============================================================ */
.features-section {
  background: var(--white);
  padding: 70px 0 60px;
  position: relative;
  z-index: 4;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-light);
  border: 1px solid rgba(11,44,95,.07);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(207,175,3,.25);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--navy-dark);
}
.feature-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */
.solutions-section {
  background: var(--bg-section);
  padding: 90px 0;
}
.solutions-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.solutions-header .section-sub { margin: 0 auto; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.solution-card-image {
  height: 210px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solution-card:hover .solution-card-image img { transform: scale(1.06); }
.solution-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,.35);
  font-size: 0.85rem;
  font-style: italic;
}
.solution-card-image-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(207,175,3,.35);
}
.solution-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 50px;
}
.solution-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.solution-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}
.solution-card-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}
.solution-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  background: var(--bg-light);
  border-top: 1px solid rgba(11,44,95,.06);
}
.solution-card-footer .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-content .section-label { display: block; }
.about-content h2 { margin-bottom: 1.4rem; }
.about-content p { margin-bottom: 1.1rem; color: var(--text-body); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-feature-item svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-item span {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  box-shadow: var(--shadow-lg);
}
.about-img-main img,
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  color: rgba(255,255,255,.3);
  font-size: 0.85rem;
  text-align: center;
  flex-direction: column;
  gap: 0.6rem;
}
.about-img-placeholder svg {
  width: 40px;
  height: 40px;
  fill: rgba(207,175,3,.3);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-badge {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   CASES / ARTICLES
   ============================================================ */
.cases-section {
  background: var(--bg-section);
  padding: 90px 0;
}
.cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.case-card-image {
  height: 190px;
  background: var(--navy-mid);
  overflow: hidden;
}
.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card-image img { transform: scale(1.05); }
.case-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: rgba(255,255,255,.3);
  font-size: 0.82rem;
  text-align: center;
  flex-direction: column;
  gap: 0.5rem;
}
.case-img-placeholder svg { width: 36px; height: 36px; fill: rgba(207,175,3,.35); }
.case-card-body { padding: 1.4rem; }
.case-tag {
  display: inline-block;
  background: rgba(207,175,3,.12);
  color: var(--gold-dark);
  border-radius: 50px;
  padding: 0.22rem 0.8rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.case-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
  line-height: 1.4;
}
.case-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-banner-image {
  flex-shrink: 0;
  width: 340px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.cta-banner-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,.2);
  font-size: 0.8rem;
  text-align: center;
}
.cta-banner-img-placeholder svg { width: 40px; height: 40px; fill: rgba(207,175,3,.3); }
.cta-banner-text { flex: 1; }
.cta-banner-text .section-label { color: var(--gold-light); }
.cta-banner-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner-text p {
  color: rgba(255,255,255,.72);
  max-width: 460px;
  margin-bottom: 2rem;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #070F1E;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.footer-logo img { width: 46px; height: auto; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-logo-text span { color: var(--gold); }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,.7);
}
.footer-social-link:hover svg { fill: var(--navy-dark); }

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
}
.footer-bottom a {
  color: rgba(207,175,3,.6);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(37,211,102,.28);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
/* ============================================================
   SERVICE PAGE — HERO
   ============================================================ */
.service-hero {
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  padding-bottom: 0;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,44,95,.97) 0%,
    rgba(11,44,95,.80) 55%,
    rgba(11,44,95,.30) 100%
  );
}
.service-hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
}
.service-hero-content {
  position: relative;
  z-index: 4;
  padding: 130px 0 70px;
  max-width: 620px;
}
.service-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.service-hero-content p {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 1.8rem;
}

/* Service Content Sections */
.service-content-section { padding: 80px 0; }
.service-content-section:nth-child(odd) { background: var(--white); }
.service-content-section:nth-child(even) { background: var(--bg-light); }

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-content-text h2 { margin-bottom: 1.2rem; }
.service-content-text p { margin-bottom: 1rem; color: var(--text-body); }

.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.included-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.bg-light .included-item { background: var(--bg-section); }
.included-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.included-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.importance-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.importance-card .section-label { color: var(--gold-light); margin-bottom: 0.8rem; }
.importance-card h3 { color: var(--white); margin-bottom: 1rem; }
.importance-card p { color: rgba(255,255,255,.72); font-size: 0.95rem; }
.importance-card .btn { margin-top: 1.8rem; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-image { width: 100%; max-width: 500px; }
  .cta-banner-text .section-sub,
  .cta-banner-text p { margin: 0 auto 2rem; }
  .cta-banner-actions { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; }
  .about-img-main { width: 85%; height: 280px; }
  .about-img-secondary { width: 60%; height: 200px; }
  .about-badge { right: 0; }
  .cases-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-content-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .about-features { grid-template-columns: 1fr; }
  .service-content-section { padding: 60px 0; }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 65px 0; }
  .hero-content { padding: 110px 0 60px; }
  .cta-banner { padding: 65px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-hero-content { padding: 110px 0 50px; }
  .importance-card { position: static; }
}

/* ── Founders cards ──────────────────────────────────────────────── */
.about-founders {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.founder-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--gold);
}
.founder-photo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-photo-placeholder svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.founder-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .15rem;
}
.founder-info span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: .5rem;
}
.founder-info p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Clients section ──────────────────────────────────────────────── */
.clients-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.client-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-light);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.client-type-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(207,175,3,.12);
  transform: translateY(-4px);
}
.client-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.client-type-card span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: .02em;
}

@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-founders { gap: 1rem; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 576px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .client-type-card { padding: 1.4rem 1rem; }
}

/* ── Problem section ─────────────────────────────────────────────── */
.problem-section {
  padding: var(--section-padding) 0;
  background: var(--gray-light);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: .8rem; }
.problem-text p strong { color: var(--navy); }
.problem-risks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.risk-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 10px rgba(11,44,95,.05);
}
.risk-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.risk-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.risk-item span {
  font-size: .82rem;
  color: var(--text-muted);
}
@media (max-width: 1024px) {
  .problem-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Sobre page ──────────────────────────────────────────────────── */
.about-page-section { padding: var(--section-padding) 0; background: var(--white); }
.about-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-page-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: .9rem; }
.about-page-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-page-img-placeholder {
  width: 100%;
  height: 380px;
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: rgba(255,255,255,.3);
}
.about-page-img-placeholder svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: rgba(207,175,3,.4);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page-img-placeholder span { font-size: .82rem; text-align: center; }

/* Values */
.values-section { padding: var(--section-padding) 0; background: var(--gray-light); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 16px rgba(11,44,95,.06);
  border-top: 4px solid var(--gold);
}
.value-card--wide { grid-column: span 1; }
.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.value-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--gold);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .7rem;
}
.value-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.6; margin: 0; }
.values-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.values-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .92rem;
}
.values-list li svg {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: none; stroke: var(--gold);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Founders full page */
.founders-section { padding: var(--section-padding) 0; background: var(--white); }
.founders-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.founder-full-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
}
.founder-full-photo { width: 100%; height: 280px; overflow: hidden; }
.founder-full-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-full-photo {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--bg-light);
}
.founder-full-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.founder-full-photo-placeholder {
  width: 100%;
  height: 280px;
  background: var(--navy-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: rgba(255,255,255,.3);
}
.founder-full-photo-placeholder svg {
  width: 52px; height: 52px;
  fill: none; stroke: rgba(207,175,3,.4);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.founder-full-photo-placeholder span { font-size: .78rem; }
.founder-full-info { padding: 1.8rem 2rem 2rem; flex: 1; }
.founder-full-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .3rem;
}
.founder-role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 1rem;
}
.founder-full-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: .7rem; font-size: .93rem; }

/* Service hero short */
.service-hero--short .service-hero-content { padding: 140px 0 60px; }

/* ── Contact page ────────────────────────────────────────────────── */
.contact-section { padding: var(--section-padding) 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  color: inherit;
}
.contact-channel-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(207,175,3,.12);
  transform: translateX(4px);
}
.contact-channel-card--whatsapp .contact-channel-icon { background: #25D366; }
.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon svg {
  width: 24px; height: 24px;
  fill: white;
}
.contact-channel-card > div { flex: 1; }
.contact-channel-card strong { display: block; font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--navy); }
.contact-channel-card span { display: block; font-size: .88rem; color: var(--text); margin: .1rem 0; }
.contact-channel-card em { display: block; font-style: normal; font-size: .78rem; color: var(--text-muted); }
.contact-channel-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: var(--text-muted);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--transition);
}
.contact-channel-card:hover .contact-channel-arrow { stroke: var(--gold); }

.contact-cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  color: var(--white);
  border-top: 4px solid var(--gold);
}
.contact-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  background: rgba(207,175,3,.1);
  border: 1px solid rgba(207,175,3,.3);
  border-radius: 30px;
  padding: .35rem .8rem;
  margin-bottom: 1.2rem;
}
.contact-cta-badge svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 .9rem;
  line-height: 1.25;
}
.contact-cta-card p { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 1.2rem; }
.contact-cta-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.contact-cta-list li {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85); font-size: .9rem;
}
.contact-cta-list li svg {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: none; stroke: var(--gold);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.contact-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-light);
  text-align: center;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.contact-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(207,175,3,.12);
  transform: translateY(-4px);
}
.contact-service-card svg {
  width: 40px; height: 40px;
  fill: none; stroke: var(--navy);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--transition);
}
.contact-service-card:hover svg { stroke: var(--gold); }
.contact-service-card span { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); }
.contact-service-card em { font-style: normal; font-size: .8rem; color: var(--text-muted); }

/* Responsive new pages */
@media (max-width: 1024px) {
  .about-page-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .founders-full-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .contact-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .contact-services-grid { grid-template-columns: 1fr; }
  .founder-full-info { padding: 1.4rem 1.2rem 1.6rem; }
}

/* ── CTA Banner — layout centralizado sem imagem ─────────────── */
.cta-banner-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner-center .section-label { color: var(--gold-light); }
.cta-banner-center .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner-center p {
  color: rgba(255,255,255,.60);
  line-height: 1.8;
  margin-bottom: 0;
}
.cta-banner-center p {
  margin: 0 auto;
}
.cta-banner-center .cta-banner-actions {
  justify-content: center;
  margin-top: 2.2rem;
}

/* Três pilares abaixo do CTA */
.cta-pillars {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 3rem;
}
.cta-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .7rem;
  padding: 0 2.5rem;
}
.cta-pillar svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .85;
}
.cta-pillar strong {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.cta-pillar span {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
}
.cta-pillar-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-pillars { flex-direction: column; gap: 2rem; }
  .cta-pillar-divider { width: 100%; height: 1px; }
  .cta-pillar { padding: 0; }
}

/* ── Contact page — redesign ─────────────────────────────────── */
.contact-section,
.contact-services-section {
  padding: 80px 0;
  background: var(--white);
}
.contact-services-section { background: var(--bg-light); }

.contact-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.contact-section-header .section-sub { margin: 0; }

/* 3 big channel cards stacked */
.contact-channels-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 680px;
  margin: 0 auto;
}
.contact-big-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 2rem;
  background: var(--bg-light);
  border-left: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.contact-big-card:hover {
  background: var(--bg-section);
  border-left-color: var(--gold-dark);
  transform: translateX(4px);
}
.contact-big-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-big-icon--navy  { background: var(--navy-dark); }
.contact-big-icon--insta { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.contact-big-icon svg { width: 24px; height: 24px; fill: white; }
.contact-big-info { flex: 1; }
.contact-big-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .15rem;
}
.contact-big-info span {
  display: block;
  font-size: .95rem;
  color: var(--text-body);
  margin-bottom: .15rem;
}
.contact-big-info em {
  display: block;
  font-style: normal;
  font-size: .8rem;
  color: var(--text-muted);
}
.contact-big-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: var(--text-muted);
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--transition), transform var(--transition);
}
.contact-big-card:hover .contact-big-arrow {
  stroke: var(--gold-dark);
  transform: translateX(4px);
}

/* Services grid */
.contact-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-service-card {
  display: flex; flex-direction: column;
  align-items: center; gap: .8rem;
  padding: 2.2rem 1.5rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  text-align: center; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.contact-service-card:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-service-card svg {
  width: 36px; height: 36px;
  fill: none; stroke: var(--navy-dark);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--transition);
}
.contact-service-card:hover svg { stroke: var(--gold-dark); }
.contact-service-card span {
  font-family: var(--font-head);
  font-size: .95rem; font-weight: 700;
  color: var(--navy-dark);
}
.contact-service-card em {
  font-style: normal; font-size: .8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .contact-channels-row { max-width: 100%; }
  .contact-big-card { padding: 1.3rem 1.2rem; }
  .contact-services-grid { grid-template-columns: 1fr; max-width: 420px; }
}
/* ── Correção de altura dos containers de imagem ── */
.about-page-image {
  height: 420px;
}
.about-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
