* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #1f2a33;
  background: #ffffff;
  overflow-x: hidden;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HEADER */
header {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  height: 32px;
  gap: 10px;
  border: none;
  font-weight: bold;
  font-size: 18px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #1f2a33;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #3B82F6;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #3B82F6;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #3B82F6;
}

nav a.active::after {
  width: 100%;
}

/* HERO */
.hero {
  width: 100%;
  height: 650px;
  background-image: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('img/frota.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 65%;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: #ffffff;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #3B82F6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn:hover {
  background: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* SECTIONS */
section {
  padding: 60px 80px;
  text-align: center;
  transition: opacity 0.3s ease;
}

section.hidden {
  display: none;
}

section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1f2a33;
}

.subtitle {
  color: #6b6b6b;
  margin-bottom: 40px;
  font-size: 16px;
}

/* FLEET SECTION */
.fleet-section {
  background: #ffffff;
  padding: 80px;
}

/* FROTA */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  padding: 30px 15px;
  border: 2px solid #e6e6e6;
  border-radius: 12px;
  cursor: pointer;
  background: #ffffff;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
  border-color: #3B82F6;
}

.fleet-card img {
  width: 100%;
  max-width: 240px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-card strong {
  margin-top: 8px;
  font-size: 20px;
  color: #2c3e50;
}

/* CARROSSEL DE FROTA */
.fleet-carousel {
  width: 100%;
  background: #f7f7f7;
  padding: 60px 0;
  margin: 40px 0;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fleet-carousel.active {
  display: block;
  opacity: 1;
}

.carousel-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 80px;
}

.carousel-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1f2a33;
}

.carousel-header p {
  color: #6b6b6b;
  font-size: 16px;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.carousel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 450px;
}

.carousel-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
}

.carousel-image img {
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}

.carousel-info {
  text-align: left;
}

.carousel-info h3 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1f2a33;
}

.carousel-info .category {
  display: inline-block;
  background: #3B82F6;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}

.carousel-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2c3e50;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
}

.feature-item::before {
  content: "✓";
  color: #3B82F6;
  font-weight: bold;
  font-size: 18px;
}

.carousel-controls {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.carousel-btn {
  background: #3B82F6;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #2c3e50;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: scale(1);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #3B82F6;
  width: 30px;
  border-radius: 6px;
}

.back-btn {
  margin-top: 30px;
  text-align: center;
}

/* RESERVA */
.reservation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  padding: 50px 80px;
}

.reservation h2 {
  font-size: 32px;
  color: #1f2a33;
  margin-bottom: 10px;
  text-align: left;
}

.reservation p {
  color: #6b6b6b;
  font-size: 16px;
  text-align: left;
  max-width: 600px;
}

/* SOBRE */
.about-section {
  padding: 80px;
  background: #ffffff;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
}

.about strong {
  color: #2c3e50;
}

.about img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
  background: #1f2a33;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
}

.footer-logo {
  margin-top: 15px;
}

.footer-logo img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3B82F6;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 12px;
}

.contact-info a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #3B82F6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn-footer {
  display: inline-block;
  padding: 10px 20px;
  background: #2c3e50;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  transition: background 0.3s ease;
}

.social-btn-footer:hover {
  background: #3B82F6;
}

.social-btn-footer.whatsapp {
  background: #25D366;
}

.social-btn-footer.whatsapp:hover {
  background: #1ea952;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #3a4a5a;
}

.footer-bottom p {
  font-size: 14px;
  color: #cccccc;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  header {
    padding: 20px 30px;
  }

  .hero {
    padding: 0 30px;
  }

  section,
  .reservation,
  .about-section {
    padding: 40px 30px;
  }

  .fleet {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .carousel-container,
  .carousel-header {
    padding: 0 30px;
  }

  .carousel-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .carousel-info {
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 200px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: #ffffff;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #e6e6e6;
    z-index: 1000;
  }

  nav a {
    margin: 15px 0;
    display: block;
  }

  nav.active {
    display: flex;
  }

  .hero {
    height: auto;
    padding: 60px 30px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .fleet {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .fleet-card {
    width: 100%;
    max-width: 320px;
  }

  .fleet-card img {
    max-width: 220px;
    height: 150px;
  }

  .carousel-info h3 {
    font-size: 28px;
  }

  .reservation {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .reservation h2,
  .reservation p {
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MENU MOBILE DINÂMICO - ADICIONE AO CSS
   ============================================ */

/* MENU TOGGLE BUTTON - Hamburguer animado */
.menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1f2a33;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

/* Animação do hamburguer quando ativo (vira X) */
.menu-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* MENU MOBILE - Slide from right */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav a {
    margin: 0 0 25px 0;
    padding: 15px 20px;
    font-size: 18px;
    color: #1f2a33;
    text-align: left;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
    background: #f7f7f7;
  }

  /* Animação cascata dos links */
  nav.active a {
    transform: translateX(0);
    opacity: 1;
  }

  nav.active a:nth-child(1) {
    transition-delay: 0.1s;
  }

  nav.active a:nth-child(2) {
    transition-delay: 0.2s;
  }

  nav.active a:nth-child(3) {
    transition-delay: 0.3s;
  }

  nav.active a:nth-child(4) {
    transition-delay: 0.4s;
  }

  nav a:hover,
  nav a.active {
    background: #3B82F6;
    color: #ffffff;
    transform: translateX(5px);
  }

  nav a::after {
    display: none;
  }

  /* Overlay escuro quando menu aberto */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  body.menu-open::before {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Animação adicional no header */
  header {
    position: sticky;
    top: 0;
    z-index: 1001;
  }
}

/* ============================================
   JAVASCRIPT - SUBSTITUA O CÓDIGO EXISTENTE
   ============================================ */