:root {
  --navy: #020b1d;
  --blue: #132a5c;
  --blue-2: #2563eb;
  --green: #25d366;
  --text: #111827;
  --muted: #6b7280;
  --light: #f4f7fb;
  --border: #dce4ef;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(16, 31, 70, 0.13);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* HEADER */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
}

.header-inner {
  height: 78px;
  display: grid;
  grid-template-columns: 220px 1fr 185px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  opacity: .9;
  position: relative;
  padding: 29px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: #72a6ff;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 3px;
  background: var(--blue-2);
  border-radius: 20px;
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.btn-header-whatsapp {
  background: var(--green);
  color: white;
  border-radius: 9px;
  padding: 10px 17px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-action small {
  color: rgba(255,255,255,.82);
  font-size: 11px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
}

/* HERO */

.hero {
  height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(2, 11, 29, .97) 0%,
    rgba(2, 11, 29, .88) 31%,
    rgba(2, 11, 29, .48) 62%,
    rgba(2, 11, 29, .05) 100%
  );
}

.hero-inner {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
  color: white;
}

.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #dbeafe;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 850;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-copy p {
  color: #edf4ff;
  font-size: 17px;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 26px;
}

.hero-benefits {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.hero-benefits div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-benefits i {
  color: white;
  font-size: 29px;
}

.hero-benefits span {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  color: white;
}

.btn-primary {
  background: var(--blue-2);
  color: white;
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #1d4ed8;
}

/* GENERAL */

.section {
  padding: 82px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  color: var(--blue);
  font-size: 38px;
  margin: 10px 0;
  letter-spacing: -.5px;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

/* ZONAS - TARJETAS VERTICALES */

.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.zone-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: .3s ease;
}

.zone-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.zone-card img {
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.08);
  transition: .45s ease;
}

.zone-card:hover img {
  transform: scale(1.08);
}

.zone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.48) 38%,
    rgba(0,0,0,.10) 75%
  );
}

.zone-content {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 26px;
  text-align: center;
  color: white;
}

.zone-content h3 {
  font-size: 22px;
  margin-bottom: 7px;
  font-weight: 800;
}

.zone-content p {
  color: #f1f5f9;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .zones-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .zone-card {
    height: 320px;
  }
}

@media (max-width: 760px) {
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .zone-card {
    height: 360px;
  }
}

/* CATALOGO STRIP */

.catalog-strip {
  margin-top: 38px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: white;
  padding: 26px 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.catalog-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-strip i {
  font-size: 32px;
}

.catalog-strip strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.catalog-strip span {
  color: #dbeafe;
}

.catalog-strip b {
  background: white;
  color: var(--blue);
  padding: 13px 18px;
  border-radius: 12px;
  white-space: nowrap;
}

/* CARDS */

.cars-section {
  background: #f4f7fb;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.car-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(16, 31, 70, .12);
  transition: .25s ease;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-gallery {
  background: linear-gradient(180deg, #f8fafc, #eef3f8);
  padding: 18px 18px 10px;
}

.main-car-img {
  height: 215px;
  object-fit: contain;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.thumbs button {
  height: 55px;
  border: 2px solid transparent;
  background: #fff;
  border-radius: 9px;
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
}

.thumbs button.active,
.thumbs button:hover {
  border-color: #2563eb;
}

.thumbs img {
  height: 100%;
  object-fit: contain;
}

.car-info {
  padding: 18px;
}

.car-info h3 {
  color: #132a5c;
  font-size: 21px;
  margin-bottom: 14px;
  font-weight: 800;
}

.car-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  color: #374151;
  font-size: 14px;
}

.car-meta i {
  color: #2563eb;
  margin-right: 7px;
}

.car-price {
  display: block;
  color: #2563eb;
  font-size: 30px;
  font-weight: 900;
  margin: 18px 0 14px;
}

.car-actions {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 10px;
}

.btn-card-whatsapp,
.btn-share {
  height: 45px;
  border-radius: 11px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
}

.btn-card-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-share {
  background: #fff;
  color: #132a5c;
  border: 1px solid #d9e2ef;
  font-size: 14px;
}

.btn-share:hover {
  border-color: #2563eb;
  color: #2563eb;
}

@media (max-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .cars-grid {
    grid-template-columns: 1fr;
  }

  .car-actions {
    grid-template-columns: 1fr;
  }
}


.autolotes-section {
  background: #fff;
}

.autolotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.autolote-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(16, 31, 70, .12);
  border: 1px solid #d9e2ef;
  transition: .25s ease;
}

.autolote-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
}

.autolote-cover {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.autolote-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autolote-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,21,46,.05), rgba(6,21,46,.72));
}

.autolote-logo {
  width: 104px;
  height: 104px;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  position: absolute;
  left: 50%;
  top: 116px;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 14px 30px rgba(16,31,70,.22);
}

.autolote-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.autolote-body {
  padding: 68px 22px 22px;
  text-align: center;
}

.autolote-body h3 {
  color: #132a5c;
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 850;
}

.autolote-body p {
  color: #4b5563;
  font-size: 15px;
  margin-bottom: 12px;
}

.autolote-body p i,
.autolote-body span i {
  color: #2563eb;
  margin-right: 6px;
}

.autolote-body span {
  display: block;
  color: #132a5c;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.autolote-btn {
  height: 48px;
  background: #06152e;
  color: #fff;
  border-radius: 12px;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.autolote-btn:hover {
  background: #2563eb;
}

.autolote-cta {
  margin-top: 38px;
  border: 1px solid #d9e2ef;
  border-radius: 22px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fbff;
}

.autolote-cta > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.autolote-cta > div > i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

.autolote-cta h3 {
  color: #132a5c;
  font-size: 24px;
  margin-bottom: 4px;
}

.autolote-cta p {
  color: #6b7280;
}

.autolote-cta a {
  background: #2563eb;
  color: white;
  border-radius: 12px;
  padding: 15px 22px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1024px) {
  .autolotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .autolote-cta {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .autolote-cta > div {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .autolotes-grid {
    grid-template-columns: 1fr;
  }
}





/* CTA */

.cta-section {
  min-height: 390px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,11,29,.94), rgba(2,11,29,.62), rgba(2,11,29,.14));
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: 88px 0;
  max-width: 550px;
}

.cta-inner h2 {
  font-size: 44px;
  margin-bottom: 17px;
}

.cta-inner p {
  color: #edf4ff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.footer-simple{
    background:#020b1d;
    color:#fff;
    text-align:center;
    padding:58px 0 26px;
}

.footer-simple img{
    width:190px;
    margin:0 auto 18px;
}

.footer-simple h3{
    font-size:22px;
    margin-bottom:14px;
}

.footer-simple p{
    max-width:720px;
    margin:0 auto 22px;
    color:#dbeafe;
    font-size:16px;
    line-height:1.7;
}

.footer-contact-simple{
    display:flex;
    justify-content:center;
    gap:26px;
    flex-wrap:wrap;
    margin-bottom:26px;
}

.footer-contact-simple span,
.footer-contact-simple a{
    color:#dbeafe;
    text-decoration:none;
    transition:.25s;
}

.footer-contact-simple a:hover{
    color:#25d366;
}

.footer-contact-simple i{
    color:#25d366;
    margin-right:7px;
}

.footer-copy-simple{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
}

.footer-copy-simple p{
    margin-bottom:8px;
    color:#9ca3af;
    font-size:14px;
}

.footer-copy-simple span{
    color:#dbeafe;
    font-size:13px;
}

.footer-copy-simple a{
    color:#ffffff;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.footer-copy-simple a:hover{
    color:#25d366;
}

@media(max-width:600px){

    .footer-simple img{
        width:165px;
    }

    .footer-simple h3{
        font-size:19px;
    }

    .footer-contact-simple{
        flex-direction:column;
        gap:12px;
    }

}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 180px 1fr 170px;
  }

  .main-nav {
    gap: 22px;
  }

  .zones-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    height: 58px;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 620px;
  }

  .hero-bg {
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(2,11,29,.97), rgba(2,11,29,.78));
  }

  .hero-copy h1 {
    font-size: 35px;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 16px;
  }

  .section-title h2 {
    font-size: 31px;
  }

  .zones-grid,
  .cars-grid,
  .agency-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-strip {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .catalog-strip > div {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .main-nav.show-menu {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .main-nav.show-menu a {
    padding: 15px 22px;
    width: 100%;
    text-align: center;
  }

  .main-nav.show-menu a::after {
    display: none;
  }

  .header-action.show-menu {
    display: flex;
    position: absolute;
    top: 288px;
    left: 0;
    right: 0;
    background: var(--navy);
    align-items: center;
    padding: 16px 0 22px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
}


.choice-cta {
  padding: 30px 0 80px;
  background: #fff;
}

.choice-box {
  background: linear-gradient(135deg, #06152e, #102b63);
  border-radius: 28px;
  padding: 48px 54px;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  align-items: center;
  gap: 34px;
  color: #fff;
  box-shadow: 0 22px 55px rgba(16, 31, 70, .18);
}

.choice-side {
  text-align: center;
}

.choice-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.choice-icon.blue {
  background: #2563eb;
}

.choice-icon.green {
  background: #25d366;
}

.choice-side h3 {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.choice-side p {
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 24px;
}

.choice-logo {
  width: 190px;
  height: 190px;
  border: 3px solid rgba(255,255,255,.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 26px;
}

.choice-logo img {
  width: 100%;
  height: auto;
}

.choice-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 15px 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-btn.white {
  background: #fff;
  color: #102b63;
}

.choice-btn.green {
  background: #25d366;
  color: #fff;
}

@media (max-width: 900px) {
  .choice-box {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .choice-logo {
    width: 150px;
    height: 150px;
    order: -1;
  }

  .choice-side h3 {
    font-size: 28px;
  }
}




/* ---------------------------------------------- */

