:root{
  --black:#050608;
  --black2:#0a0d12;
  --dark:#10151d;
  --dark2:#151b25;
  --blue:#1238ff;
  --blue2:#0077ff;
  --red:#ff1d1d;
  --white:#ffffff;
  --text:#d9e2ec;
  --muted:#8f9baa;
  --line:rgba(255,255,255,.10);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 20% 5%, rgba(18,56,255,.22), transparent 28%),
    radial-gradient(circle at 80% 35%, rgba(255,29,29,.08), transparent 25%),
    linear-gradient(180deg,#050608,#0b1018 40%,#050608);
}

img{
  width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(92%,1280px);
  margin:0 auto;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:18px 0;
  background:rgba(5,6,8,.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
  font-size:14px;
}

.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
}

.brand span{
  max-width:150px;
  line-height:1.1;
}

.menu{
  display:flex;
  align-items:center;
  gap:24px;
}

.menu a{
  color:#c7d2df;
  font-size:14px;
  font-weight:700;
  transition:.25s;
}

.menu a:hover{
  color:var(--white);
  text-shadow:0 0 18px rgba(18,56,255,.9);
}

.nav-cta{
  padding:14px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--red),#b90000);
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  box-shadow:0 14px 35px rgba(255,29,29,.24);
  transition:.25s;
}

.nav-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 45px rgba(255,29,29,.34);
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:17px 28px;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.7px;
  transition:.25s;
}

.btn-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  box-shadow:0 18px 45px rgba(18,56,255,.28);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 60px rgba(18,56,255,.42);
}

.btn-outline{
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.btn-outline:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-3px);
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  padding:150px 0 80px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  transform:scale(1.02);
}

.hero-bg video{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.25) contrast(1.15) saturate(1.15);
}

.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,6,8,.98) 0%,rgba(5,6,8,.78) 46%,rgba(5,6,8,.60) 100%),
    radial-gradient(circle at 70% 40%, rgba(18,56,255,.22), transparent 35%);
}

.hero-lines{
  position:absolute;
  inset:0;
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:70px 70px;
  mask-image:linear-gradient(to bottom,#000,transparent 85%);
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:160px;
  background:linear-gradient(to bottom,transparent,var(--black));
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}

.eyebrow,
.section-kicker{
  display:inline-flex;
  margin-bottom:20px;
  padding:10px 15px;
  border-radius:999px;
  background:rgba(18,56,255,.13);
  border:1px solid rgba(18,56,255,.35);
  color:#79a7ff;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.7px;
}

.section-kicker.red{
  background:rgba(255,29,29,.12);
  border-color:rgba(255,29,29,.35);
  color:#ff7373;
}

.hero h1{
  font-family:'Rajdhani',sans-serif;
  font-size:88px;
  line-height:.92;
  letter-spacing:-2.4px;
  text-transform:uppercase;
  margin-bottom:28px;
}

.hero p{
  max-width:720px;
  color:#c5cfdb;
  font-size:19px;
  line-height:1.8;
  margin-bottom:36px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:40px;
}

.hero-badges{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.hero-badges div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  backdrop-filter:blur(12px);
}

.hero-badges strong{
  display:block;
  font-family:'Rajdhani',sans-serif;
  font-size:30px;
  line-height:1;
  color:#fff;
  text-transform:uppercase;
}

.hero-badges span{
  display:block;
  color:#95a3b4;
  margin-top:8px;
  font-size:13px;
}

.hero-card{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:#0c1118;
  box-shadow:
    0 35px 100px rgba(0,0,0,.55),
    0 0 0 1px rgba(18,56,255,.20),
    0 0 70px rgba(18,56,255,.18);
  transform:rotate(1deg);
}

.hero-card img{
  height:560px;
  object-fit:cover;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(5,6,8,.88),transparent 55%);
}

.hero-card-info{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  padding:22px;
  border-radius:22px;
  background:rgba(5,6,8,.72);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
}

.hero-card-info span{
  display:block;
  color:#79a7ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.hero-card-info strong{
  font-size:24px;
  line-height:1.15;
}

/* BRAND STRIP */

/* mapas */

.maps-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:30px;
}

.map-box{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  padding:18px;
}

.map-box h3{
  color:#fff;
  margin-bottom:8px;
  font-size:1.1rem;
}

.map-box p{
  color:#9ca3af;
  margin-bottom:15px;
  font-size:.95rem;
}

.map-box iframe{
  width:100%;
  height:220px;
  border:none;
  border-radius:16px;
  filter:grayscale(.1) contrast(1.05);
}

@media(max-width:900px){

  .maps-grid{
    grid-template-columns:1fr;
  }

}






/* ==================================================
CARRUSEL MARCAS
================================================== */

.brand-strip{
  position:relative;
  overflow:hidden;
  padding:28px 0;
  background:#07090d;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.brand-strip::before,
.brand-strip::after{
  content:"";
  position:absolute;
  top:0;
  width:140px;
  height:100%;
  z-index:3;
}

.brand-strip::before{
  left:0;
  background:linear-gradient(to right,#07090d,transparent);
}

.brand-strip::after{
  right:0;
  background:linear-gradient(to left,#07090d,transparent);
}

.brand-track{
  display:flex;
  align-items:center;
  gap:26px;
  width:max-content;
  animation:brandScroll 28s linear infinite;
}

.brand-logo{
  width:220px;
  height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  transition:.3s;
}

.brand-logo:hover{
  transform:translateY(-4px);
  border-color:rgba(18,56,255,.45);
  box-shadow:0 18px 45px rgba(18,56,255,.18);
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:grayscale(100%) brightness(1.2);
  opacity:.75;
  transition:.3s;
}

.brand-logo:hover img{
  filter:none;
  opacity:1;
}

@keyframes brandScroll{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

/* SECTIONS GENERAL */

.section{
  padding:120px 0;
}

.section-head{
  max-width:820px;
  margin:0 auto 60px;
  text-align:center;
}

.section-head h2,
.section-content h2,
.official h2,
.catalog h2,
.contact h2{
  font-family:'Rajdhani',sans-serif;
  font-size:62px;
  line-height:.98;
  text-transform:uppercase;
  letter-spacing:-1.5px;
  margin-bottom:22px;
}

.section-head p,
.section-content p,
.official p,
.catalog p,
.contact p{
  color:#aeb9c8;
  font-size:17px;
  line-height:1.85;
  margin-bottom:18px;
}

/* COMPANY */

.company{
  background:
    radial-gradient(circle at 80% 20%,rgba(18,56,255,.13),transparent 30%),
    var(--black);
}

.company-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.image-stack{
  position:relative;
  min-height:620px;
}

.img-main,
.img-small{
  position:absolute;
  object-fit:cover;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.img-main{
  width:82%;
  height:520px;
  left:0;
  top:0;
}

.img-small{
  width:58%;
  height:330px;
  right:0;
  bottom:0;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:30px;
}

.feature-grid div{
  padding:18px 20px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid var(--line);
  color:#fff;
  font-weight:800;
}

/* SERVICES */

.services{
  background:#07090d;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-radius:30px;
  background:#111720;
  border:1px solid rgba(255,255,255,.10);
  transition:.35s;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:rgba(18,56,255,.65);
  box-shadow:0 25px 80px rgba(18,56,255,.16);
}

.service-card img{
  height:100%;
  min-height:520px;
  object-fit:cover;
  opacity:.72;
  transition:.45s;
}

.service-card:hover img{
  transform:scale(1.08);
  opacity:.9;
}

.service-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(5,6,8,.95) 0%,rgba(5,6,8,.60) 45%,transparent 100%);
}

.service-card div{
  position:absolute;
  z-index:2;
  left:24px;
  right:24px;
  bottom:24px;
}

.service-card span{
  color:#79a7ff;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
}

.service-card h3{
  font-family:'Rajdhani',sans-serif;
  font-size:36px;
  line-height:.95;
  text-transform:uppercase;
  margin:12px 0 14px;
}

.service-card p{
  color:#c7d2df;
  line-height:1.65;
  font-size:15px;
  margin-bottom:18px;
}

.service-card a{
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:1px;
}

/* OFFICIAL */

.official{
  padding:120px 0;
  background:
    linear-gradient(135deg,rgba(255,29,29,.10),transparent 32%),
    linear-gradient(315deg,rgba(18,56,255,.16),transparent 35%),
    var(--black);
}

.official-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.official-content{
  padding:50px;
  border-radius:34px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--line);
  backdrop-filter:blur(12px);
}

.official-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.official-tags span{
  padding:13px 16px;
  border-radius:999px;
  background:#fff;
  color:#07090d;
  font-weight:900;
  font-size:13px;
}

.official-photo{
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.official-photo img{
  height:620px;
  object-fit:cover;
}

/* FLEET */

.fleet{
  background:#07090d;
}

.fleet-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  grid-template-rows:1fr 1fr;
  gap:22px;
}

.fleet-card{
  position:relative;
  min-height:320px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.11);
  background:#111720;
}

.fleet-card.large{
  grid-row:span 2;
  min-height:665px;
}

.fleet-card img{
  height:100%;
  object-fit:cover;
  transition:.45s;
}

.fleet-card:hover img{
  transform:scale(1.06);
}

.fleet-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(5,6,8,.92),rgba(5,6,8,.15));
}

.fleet-card div{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  z-index:2;
}

.fleet-card span{
  color:#79a7ff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-size:12px;
}

.fleet-card h3{
  font-family:'Rajdhani',sans-serif;
  font-size:38px;
  line-height:.95;
  text-transform:uppercase;
  margin-top:10px;
}

.fleet-card p{
  color:#c7d2df;
  line-height:1.7;
  margin-top:12px;
}

/* DISTRIBUTORS */

.distributors{
  background:
    radial-gradient(circle at 15% 50%,rgba(18,56,255,.16),transparent 30%),
    var(--black);
}

.distributors-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:60px;
  align-items:center;
}

.distributor-cards{
  display:grid;
  gap:20px;
}

.distributor-card{
  padding:42px;
  border-radius:30px;
  background:
    linear-gradient(135deg,rgba(18,56,255,.22),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.12);
}

.distributor-card strong{
  display:block;
  font-family:'Rajdhani',sans-serif;
  font-size:46px;
  line-height:1;
  text-transform:uppercase;
}

.distributor-card span{
  display:block;
  color:#9fb0c4;
  font-weight:800;
  margin-top:10px;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* CATALOG */

.catalog{
  padding:90px 0;
  background:#07090d;
}

.catalog-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:58px;
  border-radius:38px;
  background:
    linear-gradient(135deg,rgba(18,56,255,.22),rgba(255,29,29,.08)),
    #101720;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.catalog-box div{
  max-width:780px;
}

/* GALLERY */

.gallery{
  background:var(--black);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:260px;
  gap:16px;
}

.gallery-grid img{
  height:100%;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
}

.gallery-grid img:first-child{
  grid-column:span 2;
  grid-row:span 2;
}

.gallery-grid img:nth-child(4){
  grid-column:span 2;
}

/* CONTACT */

.contact{
  padding:120px 0;
  background:
    linear-gradient(180deg,#07090d,#050608);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:60px;
  align-items:start;
}

.contact-links{
  display:grid;
  gap:14px;
  margin-top:30px;
}

.contact-links a{
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  color:#fff;
  font-weight:800;
  transition:.25s;
}

.contact-links a:hover{
  background:rgba(18,56,255,.18);
  border-color:rgba(18,56,255,.45);
}

.contact-card{
  padding:44px;
  border-radius:34px;
  background:#101720;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 25px 80px rgba(0,0,0,.35);
}

.contact-card h3{
  font-family:'Rajdhani',sans-serif;
  font-size:42px;
  text-transform:uppercase;
  margin-bottom:20px;
}

.contact-card p{
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px solid var(--line);
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
  width:64px;
  height:64px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25d366;
  border-radius:50%;
}

.floating-whatsapp img{
  width:34px;
  height:34px;
  filter:brightness(0) invert(1);
}

/* RESPONSIVE */

@media(max-width:1180px){
  .menu{
    display:none;
  }

  .hero-grid,
  .company-grid,
  .official-grid,
  .distributors-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero h1{
    font-size:70px;
  }

  .hero-card{
    transform:none;
  }
}

@media(max-width:850px){
  .site-header{
    padding:12px 0;
  }

  .brand img{
    width:48px;
    height:48px;
  }

  .brand span{
    font-size:12px;
  }

  .nav-cta{
    display:none;
  }

  .hero{
    padding:130px 0 70px;
  }

  .hero-grid{
    gap:34px;
  }

  .hero h1{
    font-size:52px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-card img{
    height:420px;
  }

  .hero-badges{
    grid-template-columns:1fr;
  }

  .section{
    padding:85px 0;
  }

  .section-head h2,
  .section-content h2,
  .official h2,
  .catalog h2,
  .contact h2{
    font-size:44px;
  }

  .image-stack{
    min-height:auto;
    display:grid;
    gap:16px;
  }

  .img-main,
  .img-small{
    position:static;
    width:100%;
    height:330px;
  }

  .services-grid,
  .fleet-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .fleet-grid{
    grid-template-rows:auto;
  }

  .fleet-card.large{
    grid-row:auto;
    min-height:420px;
  }

  .fleet-card{
    min-height:330px;
  }

  .catalog-box{
    flex-direction:column;
    align-items:flex-start;
    padding:38px;
  }

  .gallery-grid{
    grid-auto-rows:260px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4){
    grid-column:auto;
    grid-row:auto;
  }
}

@media(max-width:520px){
  .container{
    width:92%;
  }

  .hero h1{
    font-size:43px;
  }

  .hero-actions .btn{
    width:100%;
  }

  .brand-track span{
    font-size:21px;
  }

  .service-card{
    min-height:470px;
  }

  .service-card img{
    min-height:470px;
  }

  .official-content,
  .contact-card,
  .distributor-card{
    padding:30px;
  }

  .official-photo img{
    height:380px;
  }

  .floating-whatsapp{
    right:14px;
    bottom:14px;
  }
}








.floating-whatsapp{
  position:fixed !important;
  right:24px !important;
  bottom:24px !important;
  left:auto !important;
  top:auto !important;
  z-index:99999 !important;

  width:64px !important;
  height:64px !important;
  padding:0 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:#25d366 !important;
  border-radius:50% !important;
  box-shadow:0 18px 45px rgba(0,0,0,.45) !important;
}

.floating-whatsapp img{
  width:34px !important;
  height:34px !important;
  object-fit:contain !important;
  filter:brightness(0) invert(1) !important;
}