/* ============================
   DOUTOR REFRIGERAÇÃO — STYLE
   ============================ */

:root {
  --dark:       #080F24;
  --navy:       #0D1E4A;
  --blue:       #1259C3;
  --blue-bright:#2979FF;
  --blue-light: #5B9BFF;
  --ice:        #D6E9FF;
  --white:      #FFFFFF;
  --gray-bg:    #F4F7FF;
  --gray:       #6B7A99;
  --green:      #00C853;
  --shadow:     0 4px 24px rgba(13,30,74,0.14);
  --shadow-lg:  0 12px 48px rgba(13,30,74,0.22);
  --radius:     16px;
  --radius-sm:  10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   URGENCY TOP BAR
   ============================ */
.urgency-bar {
  background: linear-gradient(90deg, #0D1E4A 0%, #1259C3 50%, #0D1E4A 100%);
  background-size: 200% 100%;
  animation: bar-slide 8s linear infinite;
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

@keyframes bar-slide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.live-dot {
  width: 8px; height: 8px;
  background: #FF3D3D;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-red 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(13,30,74,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  flex-direction: column;
  line-height: 1;
}

.logo-text-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--dark);
  letter-spacing: 2px;
}

.logo-text-small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--blue);
  text-transform: uppercase;
}

.btn-nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav-wa:hover {
  background: #1DA851;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ============================
   HERO
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0E2558 40%, #1A3A7C 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(41,121,255,0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(41,121,255,0.12) 0%, transparent 45%);
  pointer-events: none;
}

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

.badge-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.18);
  border: 1px solid rgba(37,211,102,0.4);
  color: #5DF0A0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #00C853;
  border-radius: 50%;
  animation: pulse-green 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.6; }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--blue-bright);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-sub strong { color: var(--white); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-pills span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* HERO VISUAL SIDE */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

.hero-card-float {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}

.hero-card-stat:last-child { border-bottom: none; padding-bottom: 0; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.hero-snowflakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sf {
  position: absolute;
  color: rgba(100,165,255,0.35);
  animation: snow-fall linear infinite;
  font-size: 1.4rem;
}

.sf1 { left: 5%; top: -10%; animation-duration: 8s; animation-delay: 0s; }
.sf2 { left: 25%; top: -10%; animation-duration: 12s; animation-delay: 2s; font-size: 1rem; }
.sf3 { left: 55%; top: -10%; animation-duration: 9s; animation-delay: 1s; }
.sf4 { left: 75%; top: -10%; animation-duration: 11s; animation-delay: 3s; font-size: 1.8rem; }
.sf5 { left: 90%; top: -10%; animation-duration: 10s; animation-delay: 0.5s; font-size: 0.9rem; }

@keyframes snow-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(500px) rotate(360deg); opacity: 0; }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; }

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid #E8EEFF;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon { font-size: 1.8rem; }

.trust-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.trust-item small {
  font-size: 0.78rem;
  color: var(--gray);
  display: block;
  font-weight: 400;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: #D8E2FF;
}

/* ============================
   SECTION HEADER
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  background: var(--ice);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag-light {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--ice);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.blue-text { color: var(--blue-bright); }

/* ============================
   SERVICES
   ============================ */
.services {
  background: var(--gray-bg);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 2px 12px rgba(13,30,74,0.07);
}

.service-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border: none;
}

.service-card.featured h3,
.service-card.featured p { color: var(--white); }

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B00;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--blue-bright);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.service-card.featured .service-link { color: #9BD3FF; }

.service-link:hover { opacity: 0.8; }

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 96px 0;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(41,121,255,0.25);
  line-height: 1;
  margin-bottom: -10px;
}

.step-icon { font-size: 2.8rem; margin-bottom: 16px; }

.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-arrow {
  font-size: 2rem;
  color: var(--blue-bright);
  align-self: center;
  padding: 0 8px;
  opacity: 0.6;
}

.how-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  background: var(--gray-bg);
  padding: 96px 0 80px;
  overflow: hidden;
}

.google-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.g-logo {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  border-radius: 50%;
  color: white;
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars { color: #FFC107; font-size: 1.1rem; letter-spacing: 1px; }

.google-stars strong { font-size: 1rem; color: var(--dark); }

.google-stars span { color: var(--gray); font-size: 0.85rem; }

.testimonials-wrapper {
  overflow: hidden;
  margin: 0 -24px;
  padding: 8px 0 24px;
  position: relative;
}

/* Fade masks */
.testimonials-wrapper::before,
.testimonials-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-bg) 0%, transparent 100%);
}

.testimonials-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--gray-bg) 0%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-reviews 45s linear infinite;
  padding: 8px 20px;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(13,30,74,0.08);
  border: 1px solid #E8EEFF;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-meta { flex: 1; }

.review-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 700;
}

.review-meta small {
  font-size: 0.75rem;
  color: var(--gray);
}

.review-stars {
  color: #FFC107;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  gap: 2px;
}

.review-source {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
}

.review-text {
  font-size: 0.9rem;
  color: #3A4A6B;
  line-height: 1.65;
}

.testi-bottom {
  text-align: center;
  margin-top: 40px;
}

/* ============================
   COUNTERS
   ============================ */
.counters-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  padding: 80px 0;
}

.counters-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--white);
  line-height: 1;
}

.counter-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  margin-left: 2px;
  align-self: flex-end;
}

.counter-item {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

.counter-item p {
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================
   MAP
   ============================ */
.map-section {
  background: var(--white);
  padding: 96px 0;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  border: 3px solid var(--ice);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
}

.map-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-bg);
  padding: 24px;
  border-radius: var(--radius-sm);
}

.map-info-item > span { font-size: 1.5rem; flex-shrink: 0; }

.map-info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.map-info-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

.map-info-item a {
  color: var(--blue-bright);
  font-weight: 600;
}

/* ============================
   SOCIAL SECTION
   ============================ */
.social-section {
  background: var(--gray-bg);
  padding: 96px 0;
}

.social-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-radius: var(--radius);
  transition: all 0.25s;
  min-width: 240px;
  box-shadow: var(--shadow);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.social-card.instagram {
  background: linear-gradient(135deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  color: var(--white);
}

.social-card.whatsapp {
  background: #25D366;
  color: var(--white);
}

.social-card.google {
  background: var(--white);
  border: 2px solid #E8EEFF;
  color: var(--dark);
}

.social-card-icon { flex-shrink: 0; }

.social-card-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.social-card-text span {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

.footer-logo img { margin-bottom: 14px; height: 50px; }

.footer-logo p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
  text-align: right;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================
   FLOATING WHATSAPP
   ============================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.25s;
  position: fixed;
}

.float-wa:hover {
  background: #1DA851;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37,211,102,0.6);
}

.float-wa-ping {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #FF3D3D;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: wa-ping 2s ease-in-out infinite;
}

@keyframes wa-ping {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual { display: none; }

  .badge-urgency, .hero-trust-pills, .hero-ctas {
    justify-content: center;
  }

  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }

  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

  .counters-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .map-info-row {
    grid-template-columns: 1fr;
  }

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

  .footer-contact p { text-align: center; }

  .trust-divider { display: none; }
  .trust-inner { gap: 20px; }
}

@media (max-width: 640px) {
  .navbar .btn-nav-wa span { display: none; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .counters-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-wa span {
    display: none;
  }

  .float-wa {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    right: 20px;
    bottom: 20px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 24px;
  }

  .social-cards {
    flex-direction: column;
    align-items: center;
  }

  .social-card { width: 100%; max-width: 340px; }
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
