/* =============================================
   CK GESTÃO CONTÁBIL — CSS Principal
   Paleta: Azul marinho + dourado/âmbar + branco
   ============================================= */

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

:root {
  --navy:       #0B1F3A;
  --navy-light: #132D55;
  --gold:       #C89B3C;
  --gold-light: #E0B55A;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FC;
  --gray-100:   #EFF1F6;
  --gray-300:   #C5CAD8;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --green:      #10B981;
  --shadow-sm:  0 2px 8px rgba(11,31,58,.08);
  --shadow-md:  0 6px 24px rgba(11,31,58,.12);
  --shadow-lg:  0 16px 48px rgba(11,31,58,.16);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 88px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: .75rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}
.badge-gold { background: rgba(200,155,60,.15); color: var(--gold); }
.badge-green { background: rgba(16,185,129,.12); color: #059669; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all .3s ease;
}

#navbar.scrolled {
  background: var(--navy);
  padding: .7rem 0;
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

/* -----------------------------------------------
   Logo transparente no navbar azul marinho:
   Aplicamos filter para clarear o monograma azul
   e deixar apenas o dourado + contorno branco
   ----------------------------------------------- */
.nav-logo-img-wrap {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-logo-img-wrap:hover {
  transform: scale(1.04);
  opacity: .9;
}

/* Filtro: inverte as áreas escuras para branco,
   preserva o dourado original da logo */
.nav-logo-img-wrap img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Clareia o azul marinho escuro → branco suave,
     o dourado permanece visível e vibrante */
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.35));
  transition: filter var(--transition);
}

/* Quando navbar scrolled: leve ajuste */
#navbar.scrolled .nav-logo-img-wrap img {
  height: 46px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,.3));
}

/* Footer: logo com fundo semitransparente */
.footer-logo-wrap {
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.1);
}

.footer-logo-wrap img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,.2));
}

/* Mobile menu: logo em fundo escuro */
.mobile-logo-wrap {
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: .5rem;
}

.mobile-logo-wrap img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.3));
}

/* Mantido para fallback */
.logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Navbar scrolled — logo ligeiramente menor */
#navbar.scrolled .nav-logo-img-wrap img {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

#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='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");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,155,60,.2);
  border: 1px solid rgba(200,155,60,.4);
  color: var(--gold-light);
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}

.stat-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .2rem;
}

/* Hero card */
.hero-visual { z-index: 1; }

.hero-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 2rem;
}

.card-header-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

.card-header-info h3 { color: var(--white); font-size: 1rem; }
.card-header-info p { color: rgba(255,255,255,.55); font-size: .78rem; }

.service-list { margin-bottom: 1.5rem; }

.service-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

.service-item:last-child { border-bottom: none; }

.service-check {
  width: 22px; height: 22px;
  background: rgba(16,185,129,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #34d399;
  font-size: .7rem;
  flex-shrink: 0;
}

.card-cta {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: .8rem 1.5rem;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.card-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ---- TRUST STRIP ---- */
#trust-strip {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--gray-500);
  font-size: .85rem;
  font-weight: 500;
}

.trust-item i { color: var(--gold); font-size: 1.1rem; }

/* ---- ABOUT STRIP ---- */
#sobre {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-display {
  text-align: center;
  color: var(--white);
}

.about-icon-display i { font-size: 5rem; color: var(--gold); margin-bottom: 1rem; }
.about-icon-display p { color: rgba(255,255,255,.7); font-size: .95rem; }

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
}

.about-badge-float span {
  font-size: .78rem;
  color: var(--gray-500);
}

.about-text { padding-right: 1rem; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.pillar:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.pillar i { color: var(--gold); font-size: 1.3rem; margin-bottom: .5rem; }
.pillar h4 { font-size: .9rem; color: var(--navy); margin-bottom: .2rem; }
.pillar p { font-size: .78rem; color: var(--gray-500); }

/* ---- SERVICES ---- */
#servicos { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 2rem;
  transition: var(--transition);
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(11,31,58,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.service-card p { color: var(--gray-500); font-size: .88rem; margin-bottom: 1.25rem; line-height: 1.6; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.service-tag {
  background: var(--gray-50);
  color: var(--gray-500);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 50px;
  border: 1px solid var(--gray-100);
}

.service-card:hover .service-tag {
  background: rgba(200,155,60,.1);
  border-color: rgba(200,155,60,.3);
  color: var(--gold);
}

/* ---- DIFFERENTIAL ---- */
#diferenciais {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#diferenciais::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,155,60,.08) 0%, transparent 70%);
  pointer-events: none;
}

#diferenciais .section-header h2,
#diferenciais .section-header .section-label { color: var(--white); }
#diferenciais .section-header p { color: rgba(255,255,255,.6); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.diff-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.diff-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(200,155,60,.3);
  transform: translateY(-4px);
}

.diff-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.diff-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .5rem;
}

.diff-card p { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ---- PROCESS ---- */
#processo { background: var(--gray-50); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}

.step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1rem; margin-bottom: .4rem; }
.step p { font-size: .82rem; color: var(--gray-500); }

/* ---- TESTIMONIALS ---- */
#depoimentos { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: .5rem;
}

.testimonial-text {
  color: var(--gray-700);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.stars { color: #F59E0B; font-size: .85rem; margin-bottom: 1rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
}

.author-info span { font-size: .78rem; color: var(--gray-500); }

/* ---- FAQ ---- */
#faq { background: var(--gray-50); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { background: var(--gray-50); }

.faq-question i {
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all .35s ease;
  color: var(--gray-500);
  font-size: .87rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ---- CTA SECTION ---- */
#cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta-final::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,155,60,.1) 0%, transparent 65%);
  pointer-events: none;
}

#cta-final h2, #cta-final .section-label { color: var(--white); }
#cta-final p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; margin: .75rem auto 2rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
footer {
  background: #061223;
  color: rgba(255,255,255,.6);
  padding: 60px 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,.06);
}

.footer-brand p {
  font-size: .87rem;
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: .75rem;
}

.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}

.social-links a:hover { background: var(--gold); color: var(--navy); }

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.footer-col ul li {
  margin-bottom: .6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .85rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

.crc-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .8rem;
}

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,.75); }
}

/* ---- COOKIE BAR ---- */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  font-size: .85rem;
  transform: translateY(100%);
  transition: transform .4s ease;
  flex-wrap: wrap;
}

.cookie-bar.show { transform: translateY(0); }

.cookie-bar a { color: var(--gold); }

.cookie-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: .5rem 1.25rem;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  white-space: nowrap;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--white);
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  margin-top: 1.25rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.25rem; }
  .diff-grid, .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: .75rem; }
}
