/* =========================================
   BRASÍLIA DILIGÊNCIAS - Beta
   Design System & Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --red:        #C41E3A;
  --red-dark:   #9B1530;
  --red-light:  #DC2E4A;
  --navy:       #0F172A;
  --navy-2:     #1E293B;
  --gray-700:   #374151;
  --gray-500:   #6B7280;
  --gray-400:   #9CA3AF;
  --gray-200:   #E5E7EB;
  --gray-100:   #F3F4F6;
  --gray-50:    #F9FAFB;
  --white:      #FFFFFF;
  --green:      #16A34A;
  --wa-green:   #25D366;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.25s var(--ease);
}

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

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

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 80px);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.navbar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.navbar__logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__logo-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
  opacity: 0.9;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__links a {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.navbar__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}

.navbar__phone {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__phone i { font-size: 12px; }

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.navbar__hamburger:hover { background: rgba(255,255,255,0.1); }

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.navbar__mobile {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  padding: 20px clamp(20px, 5vw, 80px) 32px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar__mobile.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar__mobile a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover { color: var(--white); }

.btn-mobile-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--red);
  color: var(--white) !important;
  padding: 13px 28px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-align: center;
  width: 100%;
  transition: background var(--transition) !important;
}

.btn-mobile-cta:hover { background: var(--red-dark) !important; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 16, 35, 0.92) 0%,
    rgba(15, 23, 42, 0.75) 50%,
    rgba(10, 16, 35, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid rgba(196, 30, 58, 0.4);
  color: #F87171;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero__badge i { font-size: 10px; }

.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s var(--ease-out) 0.15s both;
}

.hero__title span {
  color: var(--red);
}

.hero__subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeInUp 0.9s var(--ease-out) 0.3s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s var(--ease-out) 0.45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.3);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.2s var(--ease-out) 0.8s both;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.1; }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: red;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stats__item:last-child { border-right: none; }

.stats__number {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stats__number span {
  color: var(--red);
}

.stats__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =========================================
   SECTION COMMONS
   ========================================= */
.section {
  padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 80px);
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--gray-50); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

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

.service-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(196, 30, 58, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(196, 30, 58, 0.14);
}

.service-card__icon i {
  font-size: 26px;
  color: var(--red);
}

.service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition);
}

.service-card__btn i {
  font-size: 12px;
  transition: transform var(--transition);
}

.service-card:hover .service-card__btn i {
  transform: translateX(4px);
}

/* =========================================
   COVERAGE
   ========================================= */
.coverage {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.coverage::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.coverage .section__title,
.coverage .section__eyebrow { color: var(--white); }

.coverage .section__desc { color: rgba(255,255,255,0.55); }

.coverage__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.coverage__flags {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.coverage__flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.coverage__flag img {
  height: 52px;
  width: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.coverage__flag span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.coverage__desc {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coverage__city {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
}

.coverage__city:hover {
  background: rgba(196, 30, 58, 0.2);
  border-color: rgba(196, 30, 58, 0.4);
  color: var(--white);
}

.coverage__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage__map-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.coverage__map-icon {
  font-size: 72px;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.coverage__map-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.coverage__map-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* =========================================
   DIFFERENTIALS
   ========================================= */
.differentials { background: var(--white); }

.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diff-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.diff-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.diff-card__desc {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--gray-50); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  font-style: normal;
  opacity: 0.3;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}

.testimonial-card__info {}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: var(--red);
  padding: clamp(60px, 8vw, 96px) clamp(20px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.04'%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-section__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.cta-section__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy);
  padding: clamp(56px, 7vw, 80px) clamp(20px, 5vw, 80px) 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer__brand {}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__brand-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer__brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__col-list a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__contact-item i {
  font-size: 14px;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-item span,
.footer__contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  transition: color var(--transition);
}

.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__ssl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer__ssl i { color: var(--green); font-size: 13px; }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-float__tooltip {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transform: scale(0.9);
  opacity: 0;
  transform-origin: bottom right;
  transition: transform 0.2s var(--ease), opacity 0.2s;
  pointer-events: none;
}

.wa-float:hover .wa-float__tooltip {
  transform: scale(1);
  opacity: 1;
}

.wa-float__btn {
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.wa-float__btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.25;
  animation: waPulse 2s ease-in-out infinite;
}

.wa-float__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* =========================================
   SERVICE DRAWER
   ========================================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
}

.drawer.open { visibility: visible; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s var(--ease);
}

.drawer.open .drawer__overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(520px, 100vw);
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.open .drawer__panel {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.drawer__header-left {}

.drawer__header-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.drawer__header-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.drawer__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 20px;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.drawer__close:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}

.drawer__footer {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
  background: var(--gray-50);
}

.drawer__security {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.drawer__security i { color: var(--green); }

.drawer__submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.drawer__submit:hover:not(:disabled) {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.drawer__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.drawer__submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.drawer__submit.loading .spinner { display: inline-block; }
.drawer__submit.loading .btn-text { display: none; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form styles inside drawer */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}

.form-group label .req {
  color: var(--red);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  min-height: 90px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-control.error {
  border-color: var(--red);
  background: rgba(196, 30, 58, 0.03);
}

.field-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  display: none;
}

.field-error.show { display: block; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-checkbox span {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */
.toast-container {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--gray-200);
  min-width: 300px;
  max-width: 400px;
  pointer-events: all;
  animation: toastIn 0.35s var(--ease-out) both;
}

.toast.success { border-left-color: var(--green); }
.toast.error   { border-left-color: var(--red); }

.toast__icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast.success .toast__icon { color: var(--green); }
.toast.error   .toast__icon { color: var(--red); }

.toast__content {}

.toast__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.toast__msg {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.toast.out {
  animation: toastOut 0.3s var(--ease) both;
}

@keyframes toastOut {
  to { opacity: 0; transform: translateX(24px); }
}

/* =========================================
   KEYFRAMES
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .coverage__layout { grid-template-columns: 1fr; }
  .coverage__visual { display: none; }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 320px; }
}

@media (max-width: 480px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .drawer__panel { width: 100vw; }
  .wa-float { bottom: 20px; right: 20px; }
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .btn-white, .btn-white-outline { width: 100%; justify-content: center; max-width: 300px; }
}
