:root {
  --blue: #133A4A;
  --green: #FF931E;
  --white: #fff;
  --gray-text: #DDE4E9;
}

/* ======= GLOBAL ======= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ======= HEADER ======= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  transition: 0.3s;
  z-index: 1000;
}

.header.scrolled {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  padding: 12px 24px;
}

.logo img {
  height: 80px;
}

.nav-menu a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  color: var(--blue);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block; /* Necesario para que transform funcione bien */
}

.nav-menu a:hover {
  transform: scale(1.2);
  color: var(--green);
}


.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-btn {
  font-weight: bold;
  color: var(--green);
  text-decoration: none;
}

.header-right .social-icons a {
  color: var(--blue);
  margin: 0 4px;
  font-size: 20px;
  transition: 0.3s;
}

.header-right .social-icons a:hover {
  transform: scale(1.2);
  color: var(--green);
}


/* ======= HERO ABOUT ======= */

.hero-about {
  position: relative;
  height: 60vh;
  margin-top: 90px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(19, 58, 74, 0.6);
  top: 0;
}

.hero-info {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  color: white;
}

.hero-info h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 10px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 20px;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb p {
  margin: 0;
}


/* ======= MENU HAMBURGUESA (ADAPTADO) ======= */

/* Botón hamburguesa */
.menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--blue);
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.2);
}

/* Ajuste de nav */
.nav-menu {
  display: flex;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  /* Oculta menú en móvil inicialmente */
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    width: 240px;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    border-radius: 0 0 0 15px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  /* Estado visible del menú */
  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Enlaces */
  .nav-menu a {
    color: var(--blue);
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 0;
    transition: 0.3s;
  }

  .nav-menu a:hover {
    color: var(--green);
    transform: translateX(6px);
  }

  /* Redes y teléfono dentro del menú móvil */
  .mobile-extra {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .mobile-extra .phone-btn {
    color: var(--green);
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: bold;
  }

  .mobile-extra .social-icons a {
    color: var(--blue);
    font-size: 1.4rem;
    margin-right: 10px;
    transition: 0.3s;
  }

  .mobile-extra .social-icons a:hover {
    color: var(--green);
    transform: scale(1.2);
  }

  /* Oculta redes de escritorio */
  .header-right {
    display: none;
  }
}


 .botones-flotantes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}



/* ======= FOOTER ======= */
.footer {
  background:var(--navy);color:#dfe9ff;padding:30px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-logo {
  font-size: 32px;
  color: var(--white);
  font-weight: 900;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--gray-text);
  margin: 5px 0;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-col .social-icons a {
  font-size: 22px;
  margin-right: 10px;
  color: var(--white);
  transition: 0.3s;
}

.footer-col .social-icons a:hover {
  transform: scale(1.1);
  color: var(--green);
}

.copy {
  text-align: center;
  margin-top: 40px;
  opacity: 0.7;
}






/* ====== ESTILOS WISH-WASH CARRUSEL ====== */
:root {
  --navy:#07103a;
  --gold:#f1a500;
  --orange:#ff8c1a;
  --muted:#6c7486;
  --container:1200px;
  --radius:12px;
  --font-sans:'Helvetica Neue', Arial, sans-serif;
}
*{box-sizing:border-box;}
body{margin:0;font-family:var(--font-sans);color:var(--navy);background:#fff;}

/* Header */
.topbar-inner{display:flex;align-items:center;justify-content:space-between;max-width:var(--container);margin:auto;padding:12px 20px;}
.nav-list{list-style:none;display:flex;gap:20px;margin:0;padding:0;}
.nav-list a{text-decoration:none;color:var(--navy);font-weight:700;}
.nav-list a.active{color:var(--gold);}
.nav-toggle{display:none;}
.callbox{display:flex;flex-direction:column;align-items:flex-end;}
.callbox .phone{background:var(--orange);color:#fff;text-decoration:none;padding:6px 10px;border-radius:8px;}

/* Carrusel */
.hero-carousel{position:relative;overflow:hidden;height:90vh;min-height:420px;background:var(--navy);}
.carousel-container{position:relative;width:100%;height:100%;}
.slide{position:absolute;inset:0;opacity:0;transition:opacity 1s ease;}
.slide.active{opacity:1;z-index:1;}
.slide img{width:100%;height:100%;object-fit:cover;filter:brightness(65%);}
.overlay{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;text-align:center;max-width:640px;}
.overlay h1{font-size:48px;margin-bottom:10px;text-shadow:0 3px 10px rgba(0,0,0,0.5);}
.overlay p{font-size:18px;margin-bottom:18px;color:#dfe9ff;}
.btn-primary{background:var(--gold);color:var(--navy);padding:10px 18px;border-radius:10px;text-decoration:none;font-weight:700;}
.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,0.4);color:#fff;border:none;font-size:30px;padding:6px 14px;border-radius:50%;cursor:pointer;z-index:2;}
.carousel-btn:hover{background:rgba(0,0,0,0.7);}
.carousel-btn.prev{left:20px;}
.carousel-btn.next{right:20px;}
.carousel-indicators{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:10px;}
.dot{width:12px;height:12px;background:#ffffff77;border-radius:50%;cursor:pointer;}
.dot.active{background:var(--gold);}

@media(max-width:700px){
  .overlay h1{font-size:32px;}
  .overlay p{font-size:16px;}
  .footer-grid{flex-direction:column;align-items:center;text-align:center;}
}


/* ====== SECCIÓN DE CUADROS INFORMATIVOS ====== */
.features-section {
  padding: 80px 20px;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 16px;
  color: #fff;
  text-align: center;
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-card.gold {
  background-color: var(--gold);
}

.feature-card.navy {
  background-color: var(--navy);
}

.feature-card .icon {
  font-size: 50px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #f0f3ff;
}

/* Efectos de hover */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}



/* ===== Banner 2 Cuadros Wish-Wash ===== */
.banner-dos-cuadros {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ---- Cuadro superior con imagen ---- */
.cuadro-superior {
  position: relative;
  height: 350px;
  background-image: url('https://images.pexels.com/photos/6873065/pexels-photo-6873065.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cuadro-superior::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.boton-azul {
  position: relative;
  z-index: 2;
  background-color: #0047BA;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.boton-azul:hover {
  background-color: #F4A51C;
  color: #0047BA;
  transform: scale(1.05);
}



/* ---- Cuadro inferior con fondo amarillo ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 6rem;
}

.banner-img {
  position: relative;
  width: 50%;
}

.banner-img img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}



/* Forma amarilla */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

/* CONTENEDOR PRINCIPAL */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 6rem;
  flex-wrap: wrap;
}

/* SECCIÓN DE IMAGEN */
.banner-img {
  position: relative;
  width: 50%;
  min-width: 320px;
}

.banner-img img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* === FONDO AMARILLO EXACTO === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

/* CONTENEDOR PRINCIPAL */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 6rem;
  flex-wrap: wrap;
}

/* SECCIÓN DE IMAGEN */
.banner-img {
  position: relative;
  width: 50%;
  min-width: 320px;
}

.banner-img img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* Cuadro azul con ícono */
.blue-box {
  position: absolute;
  bottom: 5%;
  left: 10%;
  background-color: #16297d;
  padding: 1rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blue-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Ícono del auto */
.blue-box svg {
  display: block;
}

/* TEXTO */
.banner-text {
  width: 45%;
  min-width: 300px;
}

.tag {
  color: #19a0ff;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner-text h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 1rem 0;
  font-weight: 800;
  color: #1c2980;
}

.highlight {
  color: #e8a21a;
}

.highlight2 {
  color: #1c2980;
}

.desc {
  color: #7d7d7d;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  color: #7d7d7d;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
}

.features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e8a21a;
  font-size: 1.2rem;
}

/* BOTÓN AZUL */
.btn {
  background-color: #16297d;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 41, 125, 0.3);
}

.btn:hover {
  background-color: #0e1c5c;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(22, 41, 125, 0.4);
}

/* ======== RESPONSIVE ======== */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .banner {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  .banner-img, .banner-text {
    width: 100%;
  }

  .banner-text {
    text-align: center;
  }

  .blue-box {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Móviles (≤ 600px) */
@media (max-width: 600px) {
  .banner {
    padding: 2rem 1.5rem;
  }

  .banner-text h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}






/* ======= SECCIÓN PRINCIPAL ======= */
.servicios-lavado {
  background-color: #eaf8f8; /* fondo muy claro */
  padding: 80px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* ======= TÍTULOS ======= */
.titulo-servicios h5 {
  color: #e39b18;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.titulo-servicios h2 {
  color: #002ead;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 50px;
}

/* ======= CONTENEDOR DE TARJETAS ======= */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ======= TARJETA ======= */
.card {
  position: relative;
  width: 300px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ======= PARTE AZUL SUPERIOR INCLINADA ======= */
.card-top {
 
  height: 130px;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
}

.card:nth-child(1) .card-top {
  background-image: url("./images/img3.jpg");
}

.card:nth-child(2) .card-top {
  background-image: url("./images/img3.jpg");
}

.card:nth-child(3) .card-top {
  background-image: url("./images/img3.jpg");
}

/* ======= ICONO DORADO (RECTÁNGULO PEQUEÑO) ======= */
.card-icon {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  background: #e3a82b;
  border-radius: 10px;
}

/* ======= CONTENIDO DE TARJETA ======= */
.card-content {
  padding: 70px 25px 40px;
}

.card-content h3 {
  font-size: 1.2rem;
  color: #002e6d;
  margin-bottom: 10px;
}

.card-content p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* ======= BOTÓN ======= */
.btn-card {
  display: inline-block;
  background: #e3a82b;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-card:hover {
  background: #d28e1b;
}


/* ======= Banner contador cuadros azules ======= */

.banner-contador {
  background-color: #e3a82b; /* Dorado corporativo */
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.contador-item {
  flex: 1 1 220px;
  margin: 20px;
}

.contador-box {
  background-color: #24348a; /* Azul corporativo */
  color: white;
  border: 3px solid white;
  border-radius: 20px;
  width: 180px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: latido 2s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

.contador-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(25deg);
  animation: brillo 4s infinite linear;
}

@keyframes brillo {
  0% { left: -70%; }
  100% { left: 150%; }
}

@keyframes latido {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
}

.numero {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
}

.simbolo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 5px;
  z-index: 2;
}

.banner-contador p {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
}




/* ======= Banner portafolio ======= */
.portafolio {
  background: #f3fbfd;
  padding: 80px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Encabezado */
.portafolio-header .subtitulo {
  color: #e8a623;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.portafolio-header .titulo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.titulo .azul {
  color: #12206b;
}

.titulo .degradado {
  background: linear-gradient(90deg, #1e90ff, #5cc8ff, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: colorMove 4s linear infinite;
}

@keyframes colorMove {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Carrusel */
.portafolio-carousel {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 1s ease;
}

.carousel-item {
  min-width: 25%;
  position: relative;
  padding: 10px;
}

.carousel-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

/* Cuadro dorado con animación */
.carousel-item .overlay {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 20px);
  background-color: rgba(232, 166, 35, 0.92);
  color: #fff;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  box-shadow: 0 0 25px rgba(232, 166, 35, 0.6);
  transition: all 0.6s ease;
}

.carousel-item:hover .overlay {
  opacity: 1;
  transform: translate(-50%, 0);
  box-shadow: 0 0 40px rgba(232, 166, 35, 0.8);
}

/* Animación de brillo intermitente */
@keyframes brilloDorado {
  0%, 100% { box-shadow: 0 0 25px rgba(232, 166, 35, 0.6); }
  50% { box-shadow: 0 0 45px rgba(255, 215, 0, 1); }
}

.carousel-item:hover .overlay {
  animation: brilloDorado 1.8s infinite ease-in-out;
}

/* Responsive */
@media (max-width: 992px) {
  .carousel-item { min-width: 33.33%; }
}
@media (max-width: 768px) {
  .carousel-item { min-width: 50%; }
}
@media (max-width: 480px) {
  .carousel-item { min-width: 100%; }
}


/*========Planes===========*/
.pricing-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #eaf7fb;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 60px;
  font-weight: 700;
}

.section-title .orange {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 1px;
}

.section-title .blue {
  color: var(--azul-oscuro);
}

.section-title .lightblue {
  color: var(--lightblue);
}

/* ======= TARJETAS ======= */
.pricing-container { 
  display: flex; 
  justify-content: center; 
  gap: 30px; 
  flex-wrap: wrap; 
}

.pricing-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(33.33% - 40px);
  max-width: 330px;
  min-width: 260px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* ===== VEHICLE PRICES ===== */
.vehicle-prices {
  background: #f4faff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.vehicle-prices div {
  margin: 6px 0;
}

.vehicle-prices strong {
  color: var(--azul-oscuro);
}

/* ===== HEADER TARJETA ===== */
/* BASE DEL CÍRCULO */
.card-header {
  width: 105px;
  height: 105px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  border: 5px solid var(--azul-oscuro);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-header {
  object-fit: cover;
}


/* IMÁGENES POR PLAN */
.card-header.express {
  background-image: url("/images/Planes/Express.png");
}

.card-header.oro {
  background-image: url("/images/Planes/Oro.png");
}

.card-header.platino {
  background-image: url("/images/Planes/Platino.png");
}

.card-header.diamante {
  background-image: url("/images/Planes/Diamante.png");
}

.card-header.heroico {
  background-image: url("/images/Planes/Heroico.png");
}


/* ===== CONTENIDO ===== */
.pricing-card h3 {
  color: var(--azul-oscuro);
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  color: #555;
  margin: 8px 0;
  font-size: 0.95rem;
}

/* ===== BOTONES ===== */
.pricing-card .btn {
  margin-top: auto;
  border: none;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn.yellow { background-color: var(--orange); }
.btn.blue { background-color: var(--azul-oscuro); }

.pricing-card .btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== DESTACADA (opcional) ===== */
.pricing-card.featured {
  border: 3px solid var(--orange);
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .pricing-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .pricing-card {
    width: 100%;
  }
}

.pricing-card .btn {
  margin-top: auto; /* Empuja el botón abajo */
}

/* Plan domicilio */
.card-header.carro {
  background-image: url('./images/Planes/Carro.png');
  background-size: cover;
  background-position: center;
}

.card-header.chica {
  background-image: url('./images/Planes/Camioneta chica.png');
  background-size: cover;
  background-position: center;
}

.card-header.grande {
  background-image: url('./images/Planes/Camioneta grande.png');
  background-size: cover;
  background-position: center;
}



/* ======= SECCIÓN Funcion ======= */
.how-section {
  background-color: var(--gray-bg);
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 70px;
  font-weight: 700;
}

.section-title .orange {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 1px;
}

.section-title .blue {
  color: var(--azul-oscuro);
}

.section-title .lightblue {
  color: var(--lightblue);
}

/* ======= CONTENEDOR DE PASOS ======= */
.steps-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* ======= PASO ======= */
.step-item {
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--azul-oscuro);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.9rem;
}

.step-icon {
  width: 130px;
  height: 90px;
  background-color: var(--orange);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--azul-oscuro );
  margin-bottom: 15px;
}

.step-icon img {
  width: 60px;
  height: auto;
}

.step-item p {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

/* ======= EFECTO HOVER ======= */
.step-item:hover .step-icon {
  transform: scale(1.05);
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ======= SECCIÓN LLÁMENOS ======= */
.contact-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(rgba(19, 20, 74, 0.85), rgba(19, 27, 74, 0.85)),
              url('/images/Slider/Inicio 1.jpg') center/cover no-repeat;
  border-radius: 15px;
  color: var(--white);
  padding: 30px 50px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ======= TEXTO IZQUIERDA ======= */
.contact-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* ======= INFO DERECHA ======= */
.contact-info {
  text-align: right;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}

/* ======= BOTÓN ======= */
.btn-call {
  background-color: #ff931e;
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background-color: #ffb24d;
}



/* ======= RESPONSIVO ======= */
@media (max-width: 768px) {
  .contact-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .contact-info {
    text-align: center;
    margin-top: 15px;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }
}

/*============= Team ==========*/
:root {
  --blue-dark: #0c2e8a;
  --orange: #ff931e;
  --white: #fff;
}

/* ======= SECCIÓN EQUIPO ======= */
.team-section {
  text-align: center;
  padding: 60px 0;
  background-color: var(--white);
}

.team-section h5 {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}

.team-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 50px;
}

.team-section h2 span {
  color: var(--orange);
}

/* ======= CONTENEDOR ======= */
.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* ======= TARJETAS ======= */
.team-card {
  background-color: var(--azul-oscuro);
  border-radius: 12px;
  width: 250px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

/* ======= FOTO ======= */
.image-container {
  position: relative;
  background-color: var(--orange);
  height: 230px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* muestra más parte superior */
}



/* ======= ICONOS DE REDES (solo para equipo) ======= */
.team-social {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-social a {
  background-color: var(--azul-oscuro);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--orange);
  color: var(--blue-dark);
}

/* ======= TEXTO ======= */
.team-info {
  padding: 20px 10px;
}

.team-info h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}

.team-info p {
  color: var(--white);
  font-size: 14px;
  opacity: 0.8;
}



/*====== Elejirnos=======*/
:root {
  --blue-dark: #0c2e8a;
  --blue-light: #00aaff;
  --white: #fff;
}

.why-choose {
  display: flex;
  align-items: center;
  background-color: var(--azul-oscuro);
  color: var(--white);
  padding: 60px 0;
}

.content {
  width: 50%;
  padding: 0 60px;
}

.content h5 {
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 10px;
}

.content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.content h2 span {
  color: var(--blue-light);
}

.content p {
  margin-top: 10px;
  color: #cfd6e3;
  font-size: 16px;
  line-height: 1.6;
}

.features {
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}

.icon {
  font-size: 28px;
  color: var(--blue-light);
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.text h4 {
  color: var(--white);
  font-weight: bold;
  margin-bottom: 5px;
}

.text p {
  color: #cfd6e3;
  font-size: 15px;
  line-height: 1.5;
}

.image-side {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.image-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: skewX(-10deg);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: -20px;
  width: 60px;
  height: 100%;
  background-color: var(--azul-oscuro);
  transform: skewX(-10deg);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--blue-light);
  color: var(--white);
  font-size: 24px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.play-button:hover {
  background-color: #008fd4;
}





/*========== Preguntas ==============*/
:root {
  --azul-oscuro: #1b2b87;
  --naranja: #f7931e;
  --gris-texto: #5a6784;
}

.faq-section {
  background: #f9fbfd;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Títulos */
.faq-left h4 {
  color: var(--naranja);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 40px;
  color: var(--azul-oscuro);
  margin-bottom: 20px;
  font-weight: 800;
}

.faq-title span {
  color: var(--naranja);
}

.faq-text {
  color: var(--gris-texto);
  line-height: 1.7;
  margin-bottom: 30px;
}

.faq-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Acordeones */
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 15px;
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: 0.3s ease;
}

.faq-item.active {
  border-left: 4px solid var(--naranja);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 17px;
  color: var(--azul-oscuro);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
  color: var(--gris-texto);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.arrow {
  font-size: 14px;
  color: var(--azul-oscuro);
  transition: transform 0.3s;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}



/*========== Testimonios =========*/
:root {
  --azul-oscuro: #1b2b87;
  --naranja: #f7931e;
}

/* Sección principal con fondo */
.testimonios-section {
  position: relative;
  padding: 80px 8%;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--azul-oscuro);
}

/* Imagen de fondo */
.testimonios-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/FondoT.png'); /* 🔹 cambia esta ruta */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* efecto parallax */
  filter: brightness(0.4); /* oscurece la imagen para resaltar texto */
  z-index: 0;
}

/* Capa de color semitransparente opcional */
.testimonios-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(27, 43, 135, 0.7), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

/* Aseguramos que todo el contenido quede por encima */
.testimonios-section > * {
  position: relative;
  z-index: 2;
}

/* Títulos */
.testimonios-subtitle {
  color: var(--naranja);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonios-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
}

.testimonios-title span {
  color: var(--naranja);
}

/* Slider */
.testimonios-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonios-container {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 85%;
  padding: 10px;
}

.testimonio-card {
  min-width: 280px;
  background: #fff;
  color: var(--azul-oscuro);
  border-radius: 16px;
  padding: 40px 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonio-foto {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--naranja);
  margin: 0 auto 15px;
}

.testimonio-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonio-text {
  font-size: 15px;
  margin: 12px 0;
  line-height: 1.5;
  color: #333;
}

.stars {
  color: var(--naranja);
  font-size: 18px;
}

/* Botones del carrusel */
.btn-prev, .btn-next {
  background: var(--naranja);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
  z-index: 3; /* para que queden sobre el fondo */
}

.btn-prev:hover, .btn-next:hover {
  background: #fff;
  color: var(--naranja);
}

.btn-prev { left: 2%; }
.btn-next { right: 2%; }




/*========= Blog ==========*/
/* ======= AUTO BLOG ======= */
.auto-blog-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--gray-light);
}

.auto-blog-subtitle {
  color: var(--orange);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 5px;
}

.auto-blog-title {
  font-size: 2.2rem;
  color: var(--azul-oscuro);
  margin-bottom: 50px;
}

.auto-blog-title span {
  color: var(--orange);
}

.auto-blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.auto-blog-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.auto-blog-card:hover {
  transform: translateY(-5px);
}

.auto-blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.auto-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.auto-blog-card:hover .auto-blog-img img {
  transform: scale(1.1);
}


.auto-blog-content {
  padding: 20px;
  text-align: left;
}

.auto-blog-meta {
  font-size: 0.9rem;
  color: gray;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.auto-blog-card-title {
  color: var(--azul-oscuro);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.auto-blog-content p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.auto-blog-btn {
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}

.auto-blog-btn:hover {
  background-color: var(--blue-dark);
}

.auto-blog-pagination {
  margin-top: 40px;
}

.auto-blog-page {
  background-color: var(--azul-oscuro);
  color: var(--white);
  padding: 10px 15px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.auto-blog-page.active {
  background-color: var(--orange);
}

.auto-blog-page:hover {
  background-color: var(--orange);
}



/*======== Formulario ===========*/
:root {
  --blue-dark: #133A4A;
  --orange: #FF931E;
  --white: #fff;
  --gray-text: #DDE4E9;
}

/* ====== Sección de contacto ====== */
.contact-section {
  background-color: var(--white);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  background-color: var(--gray-text);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ====== Imagen ====== */
.contact-image {
  flex: 1 1 400px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Formulario ====== */
.contact-form {
  flex: 1 1 400px;
  padding: 40px;
  background-color: var(--white);
}

.contact-form h2 {
  color: var(--azul-oscuro);
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form p {
  color: #555;
  margin-bottom: 25px;
}

/* ====== Inputs ====== */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

/* ====== Botón ====== */
.btn-send {
  background-color: var(--azul-oscuro);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-send:hover {
  background-color: var(--orange);
  color: var(--blue-dark);
}

/* ====== Responsivo ====== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-image {
    height: 250px;
  }

  .contact-form {
    padding: 25px;
  }
}



/*============ Ubicacion ===========*/
:root {
  --blue-dark: #133A4A;
  --orange: #FF931E;
  --white: #fff;
}

.map-section {
  padding: 80px 20px;
  background-color: var(--white);
  text-align: center;
}

.map-title {
  color: var(--azul-oscuro);
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}







