:root {

  --blue: #0F172A;
  --yellow: #FACC15;
  --red: #DC2626;
  --white: #FFFFFF;
  --gray: #F3F4F6;
  --text: #111827;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;

}

img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  color: #4B5563;
}

.header {

  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #EFBC1D;
  backdrop-filter: blur(8px);

}

.header-container {

  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;

}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {

  color: white;
  text-decoration: none;
  font-weight: 500;

}

.btn-whatsapp,
.btn-primary,
.btn-secondary {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;

}

.btn-whatsapp {

  background: #25D366;
  color: white;

}

.btn-primary {

  background: var(--yellow);
  color: black;

}

.btn-secondary {

  border: 2px solid white;
  color: white;

}

.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
}

#hero {

  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--blue);
  overflow: hidden;

}

.overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 23, 42, .95),
      rgba(15, 23, 42, .65));

}

.hero-grid {

  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

}

.hero-content {
  color: white;
}

.hero-badge {

  display: inline-block;
  background: rgba(255, 255, 255, .12);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 25px;

}

.hero-content p {

  color: rgba(255, 255, 255, .85);
  margin: 25px 0;
  font-size: 1.1rem;

}

.hero-buttons {

  display: flex;
  gap: 20px;
  margin-top: 30px;

}

.hero-features {

  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;

}

.feature-item {

  display: flex;
  align-items: center;
  gap: 10px;

}

.feature-item i {
  color: var(--yellow);
}

.hero-image img {
  border-radius: 20px;
}

.stats-grid,
.services-grid,
.clients-grid {

  display: grid;
  gap: 30px;

}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {

  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.stat-card h3 {

  color: var(--blue);
  font-size: 2rem;
  margin-bottom: 10px;

}

.about-grid,
.contact-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

}

.about-image img {
  border-radius: 20px;
}

.section-tag {

  display: inline-block;
  margin-bottom: 20px;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;

}

.about-list {

  margin-top: 30px;
  display: grid;
  gap: 20px;

}

.about-item {

  display: flex;
  align-items: center;
  gap: 12px;

}

.about-item i {
  color: var(--yellow);
}

.section-header {

  text-align: center;
  margin-bottom: 60px;

}

.services-grid {

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

}

.service-card {

  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: .3s;

}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {

  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 20px;

}

.fleet-grid {

  display: grid;

  grid-template-columns:
  repeat(3, 1fr);

  gap: 30px;

}

.fleet-card {

  background: white;
  border-radius: 20px;
  overflow: hidden;

  box-shadow:
  0 10px 30px rgba(0,0,0,.08);

  transition: .3s;

}

.fleet-card:hover {

  transform: translateY(-8px);

}

.fleet-card img {

  width: 100%;
  height: 240px;
  object-fit: cover;

}

.fleet-content {
  padding: 30px;
}

.clients-grid {

  grid-template-columns: repeat(6, 1fr);

}

.client-item {

  background: white;

  border-radius: 16px;

  padding: 40px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 140px;

  box-shadow:
  0 10px 30px rgba(0,0,0,.08);

  transition: .3s;

}

.client-item img {

  max-width: 140px;
  max-height: 70px;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: .75;

  transition: .3s;

}

.client-item:hover img {

  filter: grayscale(0%);

  opacity: 1;

}

.client-item:hover {

  transform: translateY(-5px);

}

#quote {

  background: var(--blue);

}

.quote-box {

  background: white;
  padding: 60px;
  border-radius: 30px;

}

.form-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

}

input,
textarea,
select {

  width: 100%;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  font-family: inherit;

}

textarea {

  min-height: 150px;
  margin-top: 20px;

}

.full-width {

  width: 100%;
  border: none;
  margin-top: 20px;
  cursor: pointer;

}

.contact-list {

  margin-top: 30px;
  display: grid;
  gap: 25px;

}

.contact-item {

  display: flex;
  gap: 20px;
  align-items: flex-start;

}

.contact-item i {

  color: var(--yellow);
  font-size: 1.3rem;
  margin-top: 5px;

}

.contact-map iframe {

  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;

}

.footer {

  background: #EFBC1D;
  color: white;
  padding-top: 80px;

}

.footer-grid {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;

}

.footer-links {

  display: flex;
  gap: 25px;
  align-items: center;

}

.footer-links a {

  color: white;
  text-decoration: none;

}

.footer-bottom {

  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding: 25px 0;
  text-align: center;

}

.footer-brand img {

  width:160px;
  height:auto;
  opacity:.95;
  transition:.3s;

}

.footer-brand img:hover{

  opacity:1;

}

.whatsapp-float {

  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 999;
  text-decoration: none;

}

/* ===================================== */
/* HEADER SCROLL */
/* ===================================== */

.header.scrolled {

  background: #EFBC1D;;

}

/* ===================================== */
/* MOBILE MENU */
/* ===================================== */

.menu-toggle {

  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.7rem;
  cursor: pointer;

}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:768px){

  .menu-toggle{

    display:block;

  }

  .nav{

    position:absolute;
    top:90px;
    left:0;
    width:100%;

    background:#0F172A;

    flex-direction:column;
    align-items:center;

    gap:25px;

    padding:35px 0;

    display:none;

  }

  .nav.active{

    display:flex;

  }

}

.nav{

  transition:.3s;

}