/* =========================
   AUTO SOCORRO LEO
========================= */
:root{
  --asl-primary: #050840;
  --asl-white: #ffffff;
  --asl-light: #e2e2eb;
  --asl-green: #25d366;
  --asl-shadow: 0 18px 40px rgba(5, 8, 64, 0.18);
  --asl-radius: 22px;
}

/* =========================
   BASE
========================= */
html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--asl-white);
  color: var(--asl-primary);
  font-family: Arial, Helvetica, sans-serif;
}

.asl-site *{
  box-sizing: border-box;
}

.asl-container{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   TOPO / HEADER
========================= */
.asl-topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 8, 64, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.asl-topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.asl-brand{
  display: flex;
  align-items: center;
  color: var(--asl-white);
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.asl-brand img{
  height: 55px !important;
  max-height: 55px !important;
  width: auto !important;
  display: block;
}

.asl-nav{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.asl-nav a{
  color: var(--asl-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.asl-nav a:hover{
  color: var(--asl-white);
}

.asl-actions{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* =========================
   BOTÕES
========================= */
.asl-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  white-space: nowrap;
}

.asl-btn-outline{
  background: transparent;
  color: var(--asl-white);
  border: 1px solid rgba(255,255,255,0.32);
}

.asl-btn-outline:hover{
  background: rgba(255,255,255,0.08);
}

.asl-btn-whats{
  background: var(--asl-green);
  color: #fff;
  border: 1px solid var(--asl-green);
}

.asl-btn-whats:hover{
  transform: translateY(-2px);
}

/* =========================
   HERO
========================= */
.asl-hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--asl-primary);
}

.asl-hero-bg,
.asl-hero-overlay{
  position: absolute;
  inset: 0;
}

.asl-hero-bg{
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.asl-hero-overlay{
  background: linear-gradient(
    90deg,
    rgba(5,8,64,0.90) 0%,
    rgba(5,8,64,0.76) 40%,
    rgba(5,8,64,0.35) 100%
  );
}

.asl-hero-content{
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.asl-hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.asl-hero-text{
  max-width: 720px;
  color: var(--asl-white);
}

.asl-badge{
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
  color: var(--asl-light);
}

.asl-hero h1{
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--asl-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.asl-hero p{
  font-size: 18px;
  line-height: 1.7;
  color: var(--asl-light);
  max-width: 650px;
}

.asl-hero-desc{
  font-size: 19px;
  line-height: 1.8;
  color: var(--asl-light);
  max-width: 680px;
}

.asl-hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.asl-hero-info{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--asl-light);
  font-size: 14px;
}

.asl-hero-info-cards{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.asl-hero-info-card{
  min-width: 170px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.asl-hero-info-card strong{
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.asl-hero-info-card span{
  color: var(--asl-light);
  font-size: 14px;
}

.asl-hero-side-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  color: #fff;
}

.asl-hero-side-card h3{
  margin: 0 0 12px;
  font-size: 28px;
  color: #ffffff;
}

.asl-hero-side-card p{
  margin: 0 0 18px;
  color: var(--asl-light);
  line-height: 1.7;
}

.asl-hero-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.asl-hero-list li{
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

/* =========================
   SEÇÕES GERAIS
========================= */
.asl-section{
  padding: 92px 0;
  background: var(--asl-white);
}

.asl-section-alt{
  background: var(--asl-light);
}

.asl-section-head{
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.asl-kicker{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--asl-primary);
}

.asl-section-head h2{
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.asl-section-head p{
  margin: 0;
  color: rgba(5,8,64,0.75);
  font-size: 17px;
  line-height: 1.7;
}

/* =========================
   CARROSSEL / SERVIÇOS
========================= */
.asl-carousel{
  position: relative;
  overflow: hidden;
  padding: 8px 0 16px;
}

.asl-carousel-track{
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  align-items: stretch;
  will-change: transform;
}

.asl-service-card{
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  background: #fff;
  border-radius: var(--asl-radius);
  overflow: hidden;
  box-shadow: var(--asl-shadow);
}

.asl-service-image{
  height: 260px;
  background-size: cover;
  background-position: center;
}

.asl-service-content{
  padding: 26px;
}

.asl-service-content h3{
  margin: 0 0 12px;
  font-size: 24px;
}

.asl-service-content p{
  margin: 0 0 18px;
  line-height: 1.7;
  color: rgba(5,8,64,0.8);
}

.asl-service-content a{
  color: #25d366;
  text-decoration: none;
  font-weight: 700;
}

.asl-carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(5,8,64,0.92);
  color: #fff;
  font-size: 22px;
  z-index: 5;
  box-shadow: var(--asl-shadow);
}

.asl-carousel-btn.prev{
  left: 10px;
}

.asl-carousel-btn.next{
  right: 10px;
}

/* =========================
   CONTATO PREMIUM
========================= */
.asl-contato-premium{
  background: #050840;
  padding: 60px 20px 40px;
  text-align: center;
}

.asl-contato-titulo{
  background: #e2e2eb;
  color: #050840;
  padding: 14px 40px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

.asl-contato-grid{
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.asl-contato-card{
  background: #ffffff;
  width: 190px;
  height: 190px;
  border-radius: 25px;
  text-decoration: none;
  color: #050840;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.asl-contato-card:hover{
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.asl-contato-card p{
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.asl-icon-box{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.asl-icon-box.whatsapp{
  background: #25d366;
  color: #fff;
}

.asl-icon-box.phone{
  background: #050840;
  color: #fff;
}

.asl-contato-sub{
  margin-top: 18px;
  color: #e2e2eb;
}

.asl-caminhao img{
  margin-top: 20px;
  max-width: 900px;
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

/* =========================
   SOBRE
========================= */
.asl-about{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: center;
}

.asl-about-image img{
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--asl-shadow);
  object-fit: cover;
  min-height: 420px;
}

.asl-about-text h2{
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 16px;
}

.asl-about-text p{
  font-size: 17px;
  line-height: 1.8;
  color: rgba(5,8,64,0.82);
}

.asl-about-text ul{
  margin: 20px 0 0;
  padding-left: 20px;
}

.asl-about-text li{
  margin: 0 0 10px;
  line-height: 1.6;
}

/* =========================
   DEPOIMENTOS
========================= */
.asl-testimonials{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asl-testimonial-card{
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--asl-shadow);
}

.asl-testimonial-top{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.asl-avatar{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--asl-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.asl-testimonial-card h3{
  margin: 0 0 4px;
  font-size: 19px;
}

.asl-testimonial-card span{
  font-size: 13px;
  color: rgba(5,8,64,0.65);
}

.asl-testimonial-card p{
  margin: 0;
  line-height: 1.8;
  color: rgba(5,8,64,0.85);
}

/* =========================
   COBERTURA PREMIUM
========================= */
.asl-cobertura-section{
  background:
    radial-gradient(circle at top left, rgba(37,211,102,0.08), transparent 20%),
    linear-gradient(180deg, #050840 0%, #02051f 100%);
  color: #fff;
}

.asl-section-head-light .asl-kicker,
.asl-section-head-light h2,
.asl-section-head-light p{
  color: #fff;
}

.asl-cobertura-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.asl-mapa-box{
  min-height: 470px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a102e;
  box-shadow: 0 22px 50px rgba(0,0,0,0.3);
}

.asl-mapa-box iframe{
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.asl-regioes-box{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asl-regioes-box h3{
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}

.asl-regiao-card{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(3,8,30,0.95), rgba(2,6,24,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
  transition: transform .3s ease, box-shadow .3s ease;
}

.asl-regiao-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}

.asl-regiao-text strong{
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.asl-regiao-text p{
  margin: 0;
  font-size: 15px;
  color: #cfd6ef;
}

.asl-regiao-icon{
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.asl-regiao-icon.blue{
  background: linear-gradient(135deg, #2196f3, #4fc3f7);
}

.asl-regiao-icon.green{
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.asl-regiao-icon.purple{
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.asl-regiao-icon.orange{
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.asl-regiao-icon.cyan{
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
}

/* =========================
   CONTATO PADRÃO
========================= */
.asl-contact-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.asl-contact-card{
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--asl-shadow);
}

.asl-contact-card h3{
  margin: 0 0 10px;
  font-size: 21px;
}

.asl-contact-card p{
  margin: 0;
  line-height: 1.7;
}

.asl-contact-card a{
  color: var(--asl-primary);
  text-decoration: none;
}

/* =========================
   RODAPÉ
========================= */
.asl-footer{
  background: #02051f;
  color: #fff;
  padding: 26px 0;
}

.asl-footer-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.asl-footer-content p{
  margin: 0;
  color: #cfd6ef;
  font-size: 14px;
}

.asl-footer-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.asl-footer-links a{
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.asl-footer-links a:hover{
  color: var(--asl-light);
}

/* =========================
   BOTÃO FLUTUANTE WHATSAPP
========================= */
.asl-float-whats{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--asl-green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(37,211,102,0.35);
}

/* =========================
   ANIMAÇÃO
========================= */
@keyframes float{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 1099px){
  .asl-service-card{
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .asl-about{
    grid-template-columns: 1fr;
  }

  .asl-testimonials{
    grid-template-columns: 1fr 1fr;
  }

  .asl-contact-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px){
  .asl-topbar-inner{
    flex-wrap: wrap;
    justify-content: center;
  }

  .asl-nav{
    width: 100%;
  }

  .asl-actions{
    width: 100%;
    justify-content: center;
  }

  .asl-hero-grid{
    grid-template-columns: 1fr;
  }

  .asl-cobertura-grid{
    grid-template-columns: 1fr;
  }

  .asl-mapa-box{
    min-height: 340px;
  }
}

@media (max-width: 767px){
  .asl-brand{
    font-size: 24px;
  }

  .asl-brand img{
    height: 45px !important;
    max-height: 45px !important;
  }

  .asl-service-card{
    flex: 0 0 100%;
    max-width: 100%;
  }

  .asl-testimonials{
    grid-template-columns: 1fr;
  }

  .asl-contact-grid{
    grid-template-columns: 1fr;
  }

  .asl-carousel-btn{
    display: none;
  }

  .asl-hero{
    min-height: 82vh;
  }

  .asl-section{
    padding: 74px 0;
  }

  .asl-contato-card{
    width: 150px;
    height: 150px;
  }

  .asl-icon-box{
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .asl-caminhao img{
    max-width: 100%;
  }

  .asl-hero-buttons,
  .asl-hero-info,
  .asl-hero-info-cards{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .asl-hero-side-card{
    padding: 22px;
  }

  .asl-regiao-card{
    padding: 18px 16px;
  }

  .asl-regiao-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
  }

  .asl-footer-content{
    flex-direction: column;
    align-items: flex-start;
  }
}