:root {
  --primary: #145458;
  --primary-dark: #163231;
  --accent: #e7c158;
  --text: #f5f7f6;
  --muted: rgba(245, 247, 246, 0.68);
  --surface: #102a28;
  --surface-alt: #0b1f1d;
  --shadow: 0 28px 56px rgba(2, 10, 13, 0.55);
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: radial-gradient(circle at top, rgba(231, 193, 88, 0.08), transparent 55%),
    var(--primary-dark);
}

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

i {
  vertical-align: middle;
  line-height: 1;
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(231, 193, 88, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge i {
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn i {
  font-size: 1.05rem;
}

.btn.primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 14px 32px rgba(231, 193, 88, 0.35);
}

.btn.primary:hover {
  background: #d9b043;
  transform: translateY(-2px);
}

.btn.secondary {
  background: rgba(231, 193, 88, 0.12);
  border: 1px solid rgba(231, 193, 88, 0.3);
  color: var(--accent);
}

.btn.secondary:hover {
  background: rgba(231, 193, 88, 0.2);
  transform: translateY(-1px);
}

.btn.tertiary {
  background: transparent;
  border: 1px solid rgba(231, 193, 88, 0.35);
  color: var(--accent);
  border-radius: 12px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn.tertiary:hover {
  background: rgba(231, 193, 88, 0.16);
}

.topbar {
  background: rgba(18, 48, 47, 0.9);
  color: var(--accent);
  font-size: 0.85rem;
  padding: 0.45rem 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.topbar i {
  font-size: 1rem;
}

.topbar a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.topbar .social a {
  font-size: 1rem;
  opacity: 0.75;
}

.topbar .social a i {
  font-size: 1.1rem;
}

.topbar .social a:hover {
  opacity: 1;
}

.topbar .divider {
  opacity: 0.4;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 34, 33, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.brand-logo {
  width: 62px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.brand-title {
  font-size: 1.05rem;
  display: block;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: rgba(245, 247, 246, 0.6);
  font-weight: 500;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(231, 193, 88, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 10, 13, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(140deg, rgba(18, 48, 47, 0.95) 0%, rgba(20, 84, 88, 0.92) 60%, rgba(19, 61, 58, 0.95) 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(231, 193, 88, 0.24), transparent 55%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 1rem 0;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats .stat {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem 1.1rem;
  border-radius: 16px;
  background: rgba(12, 34, 33, 0.6);
  min-width: 140px;
  border: 1px solid rgba(231, 193, 88, 0.14);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(231, 193, 88, 0.15);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.stat-icon i {
  font-size: 1.5rem;
}

.hero-stats strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.hero-stats span {
  font-size: 0.85rem;
  color: rgba(245, 247, 246, 0.7);
}

.hero-media {
  display: grid;
  gap: 1.5rem;
}

.media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card.secondary {
  max-width: 320px;
  margin-left: auto;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 13, 14, 0.75) 100%);
  color: var(--text);
}

.services,
.fleet,
.benefits,
.testimonials {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.services {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  max-width: 720px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0.75rem 0;
  color: var(--text);
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card,
.benefit-card {
  background: var(--surface-alt);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
}

.service-card i,
.benefit-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.fleet {
  background: var(--primary-dark);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.fleet-card {
  background: var(--surface-alt);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(231, 193, 88, 0.18);
  display: flex;
  flex-direction: column;
}

.fleet-banner {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  color: var(--text);
  background: linear-gradient(135deg, rgba(20, 84, 88, 0.95) 0%, rgba(13, 42, 40, 0.92) 100%);
}

.fleet-banner.banner-green {
  background: linear-gradient(135deg, rgba(20, 84, 88, 0.92) 0%, rgba(23, 63, 58, 0.9) 40%, rgba(231, 193, 88, 0.25) 100%);
}

.fleet-banner.banner-blue {
  background: linear-gradient(135deg, rgba(13, 53, 66, 0.95) 0%, rgba(26, 91, 103, 0.88) 60%, rgba(231, 193, 88, 0.2) 100%);
}

.fleet-banner.banner-dark {
  background: linear-gradient(135deg, rgba(12, 34, 33, 0.95) 0%, rgba(32, 54, 51, 0.9) 60%, rgba(231, 193, 88, 0.22) 100%);
}

.banner-content {
  display: grid;
  gap: 0.5rem;
}

.banner-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.banner-content h4 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.banner-content h4 span {
  color: var(--accent);
}

.banner-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(231, 193, 88, 0.22);
  width: fit-content;
}

.banner-note i {
  font-size: 0.9rem;
}

.banner-brand img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.banner-car {
  max-width: 260px;
  transform: translateY(10px);
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.6));
}

.fleet-title {
  background: rgba(231, 193, 88, 0.14);
  color: var(--accent);
  text-align: center;
  padding: 0.9rem 1.25rem;
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fleet-pricing {
  padding: 1.6rem 1.75rem 1.2rem;
  text-align: left;
  color: var(--text);
  font-size: 0.95rem;
}

.fleet-pricing strong {
  display: block;
  font-weight: 600;
}

.fleet-features {
  margin: 0;
  padding: 1.2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  text-align: center;
  border-top: 1px solid rgba(231, 193, 88, 0.2);
  border-bottom: 1px solid rgba(231, 193, 88, 0.2);
  font-size: 0.9rem;
  gap: 1rem;
}

.fleet-features li {
  display: grid;
  gap: 0.45rem;
  align-items: center;
  justify-items: center;
  color: var(--muted);
  font-weight: 500;
}

.fleet-features i {
  font-size: 1.25rem;
  color: var(--accent);
}

.btn.whatsApp {
  border-radius: 0;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  background: var(--accent);
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  width: 100%;
}

.btn.whatsApp:hover {
  background: #d9b043;
}

.testimonials {
  background: var(--surface);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--surface-alt);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card .btn {
  justify-self: flex-start;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
}

.profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.testimonial-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.testimonial-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 13, 0.68);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--surface);
  border-radius: 24px;
  padding: 2.2rem;
  width: min(520px, 90vw);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(231, 193, 88, 0.2);
  z-index: 1;
  animation: modalIn 0.3s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(231, 193, 88, 0.18);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.modal-icon i {
  font-size: 1.2rem;
}

.modal-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  color: rgba(245, 247, 246, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--accent);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1100;
}

.fab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab i {
  font-size: 1.15rem;
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.fab.phone {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}

.fab.whatsapp {
  background: var(--accent);
  color: var(--primary-dark);
}

.cta {
  background: linear-gradient(135deg, rgba(18, 48, 47, 0.92) 0%, rgba(20, 84, 88, 0.88) 100%);
  color: var(--text);
  padding: clamp(3rem, 6vw, 4rem) 0;
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.faq {
  background: var(--primary);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(231, 193, 88, 0.2);
  border-radius: 18px;
  background: rgba(12, 34, 33, 0.7);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-question i {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.4rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  padding-bottom: 1.2rem;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding-top: 0.2rem;
}

.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-item.open .faq-question i.fa-chevron-down {
  transform: rotate(180deg);
}

footer {
  background: #0b1f1d;
  color: var(--text);
  padding: 3.5rem 0 0;
}

footer .container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-about p {
  color: rgba(245, 247, 246, 0.65);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  color: var(--primary-dark);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.footer-social a i {
  font-size: 1.2rem;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  background: #f0ce70;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.footer-contact i {
  color: var(--accent);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(231, 193, 88, 0.18);
  margin-top: 3rem;
  text-align: center;
  padding: 1.75rem 0;
  color: rgba(245, 247, 246, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(280px, 72vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem;
    background: var(--surface);
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .hero {
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-media {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .media-card.secondary {
    margin: 0;
  }

  .cta .container {
    text-align: center;
    justify-content: center;
  }

  .fleet-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .service-card,
  .benefit-card,
  .testimonial-card {
    padding: 1.6rem;
  }

  .fleet-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
    justify-items: center;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }

  .fab span {
    display: none;
  }
}
