/* =============================================
   CAPI RENTALS — Premium Landing Page Styles
   ============================================= */


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --c-white:      #f5f4f0;
  --c-bg:         #f0ede8;
  --c-dark:       #111210;
  --c-carbon:     #1c1e1b;
  --c-teal:      #043b6b;
  --c-teal-mid:   #2a5a52;
  --c-accent:     #06aea1;
  --c-accent-2:  #067e74;
  --c-gray:       #6b6b68;
  --c-gray-lt:    #d8d5cf;
  --c-glass:      rgba(255,255,255,.08);

  --font-head: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-soft: 0 24px 64px rgba(0,0,0,.12);
  --shadow-card: 0 8px 32px rgba(0,0,0,.10);
  --shadow-glow: 0 0 60px rgba(224,120,48,.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

h1, h2{
  font-weight: 800;
}

.section-tag--light { color: var(--c-accent-2); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-dark);
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: 1.05rem;
  color: var(--c-gray);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1rem;
}

.text-accent { color: var(--c-accent); }
.text-white  { color: #fff; }

/* ---------- BUTTONS ---------- */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  padding: .85rem 2rem;
  border-radius: 100px;
  border: none;
  transition: transform .25s, box-shadow .25s, background .25s;
  box-shadow: 0 4px 20px rgba(68,160,168,.63);
}
.btn-primary-cta:hover {
  background: #c86820;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224,120,48,.45);
  color: #fff;
}

.btn-ghost-cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--c-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  border: 1.5px solid var(--c-dark);
  transition: background .2s, color .2s;
}
.btn-ghost-cta:hover { background: var(--c-dark); color: #fff; }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--c-teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--c-teal);
  transition: background .2s, color .2s;
}
.btn-ghost-dark:hover { background: var(--c-teal); color: #fff; }

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  padding: .6rem 1.4rem;
  border-radius: 100px;
  transition: background .2s, transform .2s;
}
.btn-cta-nav:hover { background: #c86820; transform: translateY(-1px); color: #fff; }

.btn-car-cta {
  display: inline-flex;
  align-items: center;
  background: var(--c-teal);
  color: #fff;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  padding: .55rem 1.2rem;
  border-radius: 100px;
  border: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-car-cta:hover { background: var(--c-accent); transform: translateY(-1px); color: #fff; }

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(68,160,168,.63);
}
.btn-wa-big:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.4); color: #fff; }

.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  background: rgba(37,211,102,.15);
  color: #25D366;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  padding: .6rem 1.4rem;
  border-radius: 100px;
  border: 1px solid rgba(37,211,102,.3);
  transition: background .2s, color .2s;
}
.btn-wa-footer:hover { background: #25D366; color: #fff; }

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease var(--delay, 0s), transform .65s ease var(--delay, 0s);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  padding: 1.25rem 0;
  transition: background .35s, box-shadow .35s, padding .35s;
  z-index: 1000;
}
#navbar.transparent { background: transparent; box-shadow: none; }
#navbar.scrolled {
  background: rgba(245,244,240,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  padding: .75rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.navbar-brand img{
  max-height: 100px;
}

#navbar.scrolled img{
  max-height: 30px;
}

.brand-icon {
  width: 36px; height: 36px;
  background: var(--c-teal);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.brand-icon.small { width: 28px; height: 28px; font-size: .75rem; border-radius: 8px; }
.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--c-dark);
}
.brand-thin { font-weight: 400; color: var(--c-gray); }

.nav-link {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: #878787 !important;
  padding: .4rem .75rem !important;
  position: relative;
  letter-spacing: .02em;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-link:hover::after { transform: scaleX(1); }

.toggler-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}
.navbar-toggler { border: none; padding: 0; background: none; }
.navbar-toggler:focus { box-shadow: none; }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--c-bg);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,58,53,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,120,48,.12) 0%, transparent 70%);
  bottom: 50px; left: 0;
}

.hero-diagonal {
  position: absolute;
  bottom: -2px; right: 0;
  width: 55%;
  height: 100%;
  background: var(--c-teal);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-container { position: relative; z-index: 1; }

.hero-copy { padding-top: 5rem; padding-bottom: 5rem; }

.hero-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(48,206,224,.1);
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--c-dark);
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: normal;
  color: var(--c-teal);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--c-gray);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  box-shadow: var(--shadow-card);
}
.hero-badge i { font-size: 1.2rem; color: var(--c-accent); }
.badge-val { display: block; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--c-dark); }
.badge-sub { display: block; font-size: .75rem; color: var(--c-gray); }

/* Hero right column */
.hero-img-col { position: relative; padding-top: 6rem; padding-bottom: 3rem; }

.hero-car-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-car-glow {
  position: absolute;
  inset: 20% 10% 0;
  background:radial-gradient(ellipse, rgb(48 198 224 / 30%) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-car-img {
  position: relative;
  z-index: 1;
 
 
  width: 100%;
  
  
  transform: translateX(30px);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: .75rem 1.1rem;
  box-shadow: var(--shadow-card);
  z-index: 2;
  border: 1px solid rgba(255,255,255,.8);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.top-right { top: 7rem; right: -1rem; animation-delay: 0s; }
.hero-float-card.bottom-left { bottom: 4rem; left: -1rem; animation-delay: 2s; }
.hero-float-card i { font-size: 1.3rem; }
.fc-label { display: block; font-size: .72rem; color: var(--c-gray); }
.fc-val { display: block; font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--c-dark); }

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 3rem;
  display: flex; align-items: center; gap: .75rem;
  z-index: 5;
}
.hero-scroll-hint span { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-gray); }
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--c-gray), transparent);
}

/* Hero responsive */
@media (max-width: 991.98px) {
  .hero-diagonal { display: none; }
  .hero-copy { padding-top: 7rem; padding-bottom: 2rem; }
  .hero-img-col { padding-top: 0; }
  .hero-car-img { transform: none; }
  .hero-float-card.top-right { right: 0; top: -1rem; }
  .hero-float-card.bottom-left { left: 0; bottom: 0; }
  .hero-scroll-hint { display: none; }
}

/* =============================================
   VENTAJAS
   ============================================= */
.section-ventajas {
  padding: 5rem 0;
  background: white;
  position: relative;
}

.ventaja-card {
  background: var(--c-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.ventaja-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  transform: scaleX(0);
  transition: transform .35s;
}
.ventaja-card:hover::before { transform: scaleX(1); }
.ventaja-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.ventaja-card--accent {
  background: var(--c-teal);
  color: #fff;
}
.ventaja-card--accent .ventaja-title { color: #fff; }
.ventaja-card--accent .ventaja-desc  { color: rgba(255,255,255,.7); }
.ventaja-card--accent .ventaja-icon  { color: var(--c-accent-2); background: rgba(255,255,255,.08); }

.ventaja-icon {
  width: 56px; height: 56px;
  background: rgba(26,58,53,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--c-teal);
  margin-bottom: 1.25rem;
}
.ventaja-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: .5rem;
}
.ventaja-desc { font-size: .95rem; color: var(--c-gray); margin: 0; }

/* =============================================
   NOSOTROS
   ============================================= */
.section-nosotros {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.nosotros-bg-number {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 800;
  color: rgba(26,58,53,.02);
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.nosotros-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.nosotros-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.nosotros-stat-card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--c-accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow:  0 4px 20px rgba(68,160,168,.63);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800;
  line-height: 1;
}
.stat-lab {
  display: block;
  font-size: 1rem;
  opacity: .85;
  margin-top: .2rem;
}

@media (max-width: 991.98px) {
  .nosotros-img { height: 280px; }
  .nosotros-stat-card { right: 0; bottom: -1rem; }
}

/* =============================================
   UNIDADES
   ============================================= */
.section-unidades {
  padding: 6rem 0;
  background:  var(--c-bg);
  overflow: hidden;
}

.swiper-unidades {
  padding: 1rem .5rem 3rem !important;
  overflow: visible !important;
}

.car-card {
  background: var(--c-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(0,0,0,.04);
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.car-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: ;
 
}
.car-card-img-wrap img {
  width: 100%; height: 100%;
  
  transition: transform .5s;
 
}
.car-card:hover .car-card-img-wrap img { transform: scale(1.05); }

.car-card-body { padding: 1.5rem; }

.car-name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: .25rem;
}
.car-specs { font-size: 1.2rem; color: var(--c-white); }

.swiper-pagination-unidades {
  position: relative !important;
  margin-top: 2rem;
}
.swiper-pagination-bullet {
  background: var(--c-teal) !important;
  opacity: .3;
}
.swiper-pagination-bullet-active { opacity: 1 !important; width: 24px; border-radius: 4px; }

/* =============================================
   WA CTA
   ============================================= */
.section-wa-cta {
  padding: 5rem 0;
  background: var(--c-teal);
  position: relative;
  overflow: hidden;
  background-image: url(images/cta.webp);
  background-size: cover;
  background-position: 50% 50%;
}
.section-wa-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
}
.wa-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.wa-cta-sub { color: rgba(255,255,255,.65); font-size: 1rem; }

/* =============================================
   TESTIMONIOS
   ============================================= */
.section-testimonios {
  padding: 6rem 0;
  background: var(--c-carbon);
  position: relative;
  overflow: hidden;
}
.testimonios-big-q {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(12rem, 25vw, 22rem);
  font-weight: 800;
  color: rgba(255,255,255,.03);
  top: -2rem; left: -1rem;
  line-height: 1;
  pointer-events: none;
}

.swiper-testimonios { overflow: visible !important; }

.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s;
}
.testi-card:hover {
  border-color: rgba(224,120,48,.3);
  background: rgba(255,255,255,.07);
}

.testi-stars { color: var(--c-accent-2); font-size: .9rem; }
.testi-quote {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,.1);
}
.testi-name { display: block; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: .95rem; }
.testi-src  { display: block; font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .1rem; }

.swiper-pagination-testi { margin-top: 2.5rem !important; }
.section-testimonios .swiper-pagination-bullet { background: rgba(255,255,255,.3) !important; }
.section-testimonios .swiper-pagination-bullet-active { background: var(--c-accent) !important; }

/* =============================================
   CONTACTO
   ============================================= */
.section-contacto {
  padding: 6rem 0;
  background: var(--c-white);
}

.contact-info-list { margin-top: 2rem; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(26,58,53,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-teal);
  flex-shrink: 0;
}
.ci-label { display: block; font-size: .78rem; color: var(--c-gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }
.ci-val { display: block; font-family: var(--font-head); font-weight: 600; color: var(--c-dark); font-size: .95rem; }

.contact-form-wrap {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,.04);
}

.form-label-custom {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.form-input-custom {
  display: block;
  width: 100%;
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-lt);
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.form-input-custom::placeholder { color: #bbb; }
.form-input-custom:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(26,58,53,.1);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--c-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-thin { color: rgba(255,255,255,.4); }

.footer-tagline { font-size: .95rem; color: rgba(255,255,255,.45); }

.footer-phones { display: flex; flex-direction: column; gap: .4rem; }
.footer-phones a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-phones a:hover { color: var(--c-accent); }

.footer-heading {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-addr { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.6; }

.footer-divider { border-color: rgba(255,255,255,.08); margin: 2.5rem 0 1.5rem; }

.footer-copy { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-copy a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-copy a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   RESPONSIVE MISC
   ============================================= */
@media (max-width: 767.98px) {
  .contact-form-wrap { padding: 1.5rem; }
  .nosotros-stat-card { position: static; margin-top: 1rem; display: inline-block; }
  .hero-badges { gap: .75rem; }
  .hero-badge { padding: .55rem .8rem; }
  .section-wa-cta .text-lg-end { text-align: left !important; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-ghost-cta { margin-left: 0 !important; }
}



@media(max-width: 992px){


.navbar-collapse{
  background: #fff;
    padding: 10px;
}
}
