:root {
  --navy: #071b31;
  --navy-2: #0b2a47;
  --navy-3: #102f4f;
  --gold: #d79b22;
  --gold-2: #efbd49;
  --white: #ffffff;
  --paper: #f7f8fb;
  --ink: #0d1727;
  --muted: #667085;
  --line: #e3e7ee;
  --shadow: 0 18px 40px rgba(7, 27, 49, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 88px;
  padding: 0 clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(90deg, #06172a 0%, #0a2744 56%, #102f4f 100%);
  border-bottom: 2px solid rgba(215, 155, 34, 0.8);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark img {
  width: 72px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.25));
}

.brand-text {
  display: grid;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-size: 1.7rem;
  letter-spacing: 0.16em;
}

.brand-text em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--white);
  font-weight: 700;
}

.site-menu a {
  position: relative;
  padding: 32px 0 28px;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-gold {
  color: var(--white);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 22px rgba(215, 155, 34, 0.25);
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.16);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 500px;
  color: var(--white);
  overflow: hidden;
  background: #071b31;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 25, 0.94) 0%, rgba(5, 14, 25, 0.72) 38%, rgba(5, 14, 25, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 27, 49, 0) 70%, rgba(7, 27, 49, 0.9) 100%),
    url("assets/hero/hero-fleet.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 54px;
  padding: 58px 0 28px;
}

.hero-copy {
  max-width: 560px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1::first-line {
  color: var(--white);
}

.hero h1 span,
.section-title span,
.about-content span,
.quote-form span {
  color: var(--gold);
}

.hero p {
  max-width: 460px;
  margin: 18px 0 0;
  font-size: 1.1rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 26px;
  max-width: 660px;
}

.hero-features article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 12px;
}

.hero-features .icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
}

.hero-features .icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.hero-features .icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-features strong,
.hero-features small {
  display: block;
}

.hero-features small {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 38px clamp(18px, 5vw, 70px);
}

.section-white {
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 26px;
}

.section-title h2,
.about-content h2,
.quote-form h2,
.contact-info h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--gold);
}

.services-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-card,
.fleet-card,
.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 27, 49, 0.06);
}

.service-card {
  min-height: 176px;
  padding: 22px 18px;
  text-align: center;
}

.service-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 1.1rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.dark {
  background: var(--navy);
}

.service-icon.gold {
  background: var(--gold);
}

.service-card h3,
.fleet-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.service-card p,
.fleet-card p,
.testimonial-grid p,
.about-content p,
.about-values p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.why-band,
.contact-band,
.footer {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 49, 0.98), rgba(10, 42, 71, 0.98)),
    radial-gradient(circle at right, rgba(215, 155, 34, 0.18), transparent 34%);
}

.why-band {
  padding: 30px clamp(18px, 5vw, 70px);
}

.section-title-dark h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.why-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.why-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  font-weight: 900;
}

.why-grid svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.fleet-section {
  padding-top: 34px;
}

.fleet-card {
  overflow: hidden;
  text-align: center;
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  background: #e9edf2;
}

.fleet-card h3 {
  margin-top: 12px;
}

.fleet-card p {
  padding: 0 12px 16px;
  font-size: 0.92rem;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.16fr);
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-image {
  min-height: 310px;
  background: #dce3ea;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 64%;
}

.about-content {
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background: linear-gradient(135deg, #071b31, #0d3358);
}

.about-content h2 {
  color: var(--white);
}

.about-content > p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.about-values strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.about-values p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.testimonials {
  padding-top: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.testimonial-grid article {
  position: relative;
  padding: 24px 28px 24px 58px;
}

.testimonial-grid span {
  position: absolute;
  left: 24px;
  top: 18px;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.testimonial-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 0.9rem;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(980px, 100%);
  margin: 22px auto 0;
}

.client-list span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.2fr;
  gap: 40px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px 8px 0 0;
  align-items: stretch;
}


.quote-form h2,
.contact-info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  outline: none;
  background: var(--white);
}

.quote-form textarea {
  min-height: 84px;
  margin: 10px 0;
  resize: vertical;
}

.quote-form .button {
  width: 100%;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 9px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-info a,
.contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.map-card {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 22px;
  text-align: center;
  color: var(--navy);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(45deg, #d9e2e8 0 2px, #edf2f6 2px 16px);
}

.map-card span {
  color: #c3442d;
  font-weight: 800;
}

.map-card strong {
  color: var(--navy);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 70px);
}

.footer .brand-mark img {
  width: 56px;
}

.footer .brand-text strong {
  font-size: 1.25rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #20c75a;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-menu,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu.is-open {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 18px;
  }

  .site-menu.is-open a {
    padding: 12px 0;
  }

  .services-grid,
  .fleet-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-left: 0;
    border-left: 0;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding-inline: 14px;
  }

  .brand-mark img {
    width: 52px;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .brand-text strong {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
  }

  .brand-text em {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 14, 25, 0.94) 0%, rgba(5, 14, 25, 0.72) 54%, rgba(5, 14, 25, 0.3) 100%),
      url("assets/hero/hero-fleet.png") center bottom / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    align-content: start;
    padding-top: 54px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions,
  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    width: 100%;
  }

  .services-grid,
  .fleet-grid,
  .why-grid,
  .testimonial-grid,
  .about-split,
  .about-values,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-split,
  .contact-band {
    width: 100%;
    border-radius: 0;
  }

  .about-image {
    min-height: 230px;
  }

  .section {
    padding: 34px 16px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

.accordion{
    margin-top:30px;
}

.accordion-item{
    margin-bottom:15px;
    border-radius:8px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
}

.accordion-header{
    width:100%;
    padding:18px 20px;
    border:none;
    background:transparent;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
}

.accordion-header:hover{
    background:rgba(215,155,34,.15);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.accordion-content p{
    padding:0 20px 20px;
    color:rgba(255,255,255,.90);
    line-height:1.9;
    text-align:justify;
    text-justify:inter-word;
    font-size:1rem;
}


.accordion-item.active .accordion-content{
    max-height:600px;
}

.accordion-item.active .accordion-header{
    color:#d79b22;
}

.about-intro{
    font-size:1rem;
    line-height:1.8;
    color:rgba(255,255,255,.90);
}

.contact-item{
    margin-bottom:22px;
}

.contact-item strong{
    display:block;
    margin-bottom:10px;
    color:#d79b22;
    font-size:18px;
}

.contact-item a{
    display:block;
    margin-bottom:8px;
    color:#fff;
    transition:.3s;
}

.contact-item a:hover{
    color:#d79b22;
}

.contact-item p{
    margin:0;
    line-height:1.7;
    color:#fff;
}

.map-container{
    width:100%;
    height:100%;
    min-height:380px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.map-container iframe{
    width:100%;
    height:100%;
    min-height:380px;
    border:0;
}

.contact-info{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap:18px;
}

.employee-form-card{
    max-width:1100px;
    margin:40px auto;
    padding:45px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(7,27,49,.12);
    border-top:5px solid #d79b22;
}
}

.employee-form-card h3{
    color:#071b31;
    font-size:2.3rem;
    font-weight:800;
    margin-bottom:12px;
}

.employee-form-card p{
    margin-bottom:30px;
    color:#667085;
}

.loan-options{
    display:flex;
    gap:30px;
    margin:20px 0;
    font-weight:600;
}

.checkbox-policy{
    display:block;
    margin:25px 0;
}

@media (max-width: 768px){

    .employee-form-card{
        padding:25px;
        margin:20px;
    }

    .employee-form-card h3{
        font-size:1.8rem;
    }

    .form-grid{
        grid-template-columns:1fr !important;
    }

    .loan-options{
        flex-direction:column;
        gap:12px;
    }

    .button{
        width:100%;
    }

}

.loan-amounts{
    margin:30px auto;
    padding:30px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:15px;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:15px 40px;

    max-width:800px;
}

.loan-amounts h4{
    grid-column:1 / -1;
    margin:0 0 20px;
    color:#071b31;
    font-size:1.3rem;
    font-weight:700;
}

.loan-amounts label{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
    font-weight:500;
}

.loan-amounts input[type="number"]{
    grid-column:1 / -1;
}

#otroMonto{
    max-width:350px;
    margin-top:15px;
}

@media (max-width:768px){

    .loan-amounts{
        grid-template-columns:1fr;
    }

    #otroMonto{
        max-width:100%;
    }

}
.field-help{
    display:block;
    margin-top:5px;
    font-size:0.85rem;
    color:#6b7280;
}
.employee-badge{
    display:inline-block;
    background:#071b31;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:20px;
}
.loan-note{
    background:#fff8e8;
    border-left:4px solid #d79b22;
    padding:14px 18px;
    border-radius:8px;
    margin:20px 0;
    color:#5a4a00;
}