body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #3f3f3f;
  color: white;
}

.navbar {
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1.6px;
  background: linear-gradient(90deg, #f4d76b, #ffe8a8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 10px rgba(244, 207, 89, 0.35), 0px 0px 18px rgba(255, 240, 150, 0.25);
  animation: brillo 3s ease-in-out infinite alternate;
}

@keyframes brillo {
  0% {
    text-shadow: 0px 0px 6px rgba(244,197,66,0.22), 0px 0px 12px rgba(255,230,165,0.12);
  }
  100% {
    text-shadow: 0px 0px 14px rgba(244,197,66,0.45), 0px 0px 28px rgba(255,240,180,0.20);
  }
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4c542;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #2c2c2c;
}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slides img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: #2c2c2c;
  flex: 0 0 100%;
  display: block;
  cursor: pointer;
}

section {
  padding: 30px 40px;
}

#inicio {
  background-color: #3f3f3f;
  text-align: center;
  padding: 0;
  scroll-margin-top: 80px;
}

#servicios {
  padding-top: 20px;
  background-color: #464646;
}
.servicio-banner {
  position: relative;
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 14px;
  background: rgba(244, 215, 107, 0.05);
  border-top: 3px solid rgba(244, 215, 107, 0.4);
  border-bottom: 3px solid rgba(244, 215, 107, 0.4);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.servicio-titulo {
  margin: 0 auto 20px auto;
  text-align: center;
  top: -18px;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f4d76b;
  padding: 10px 22px;
  background: rgba(0,0,0,0.45);
  border-radius: 12px;
  text-shadow: 0 0 8px rgba(244,207,89,0.35), 0 0 16px rgba(255,240,160,0.25);
  backdrop-filter: blur(4px);
  display: inline-block;
}

.servicio-row {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 12px;
  min-height: 280px;
  margin-top: 12px;
}

.slider-servicio {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 350px;
  overflow: hidden;
  border-radius: 14px;
  background: #222;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 0 12px rgba(0,0,0,0.5);
  cursor: pointer;
}

.slides-servicio {
  display: flex;
  height: 100%;
  transition: transform 0.9s ease-in-out;
}

.slides-servicio img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.slider-servicio[data-slider="lavadero"],
.slider-servicio[data-slider="detailing"] {
  height: 350px;
}

.slider-servicio[data-slider="lavadero"] img,
.slider-servicio[data-slider="detailing"] img {
  object-fit: contain;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #777;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.dots span.active {
  background: #f4d76b;
  transform: scale(1.2);
}

.servicio-btn {
  width: fit-content;
  margin: 20px auto 0;
  text-align: center;
}

.toggle-btn {
  width: auto;
  display: inline-block;
  padding: 10px 20px;
  background: #222;
  color: #f4d76b;
  border: 1px solid #444;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
  margin: 0 auto;
}

.toggle-btn:hover {
  background: #333;
}

.contenido-expandido {
  width: fit-content;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0 0 10px 10px;
  margin-top: -2px;
  transition: max-height 0.4s ease, padding 0.3s ease, background 0.3s ease;
}

.expandido .contenido-expandido {
  max-height: 900px;
  padding: 18px;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

.contenido-expandido ul,
.contenido-expandido p {
  list-style: none;
  color: #ddd;
  font-size: 17px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-right: 0;
}

.contenido-expandido ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.contenido-expandido ul li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  
  background: rgba(255,255,255,0.04);
  padding: 8px 12px;
  margin: 4px 0;
  
  border-radius: 8px;
  font-size: 14px;
  color: #f1f1f1;
  font-family: 'Poppins', sans-serif;
  
  border: 1px solid rgba(255,255,255,0.10);
  transition: 0.25s ease;
}

.contenido-expandido ul li:hover {
  background: rgba(255,255,255,0.09);
  transform: translateX(3px);
  border-color: rgba(255,255,255,0.25);
}


#promociones {
  padding: 20px 40px 22px 40px;
  background-color: #3f3f3f;
  text-align: center;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.promo-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.3s;
}

.promo-grid img:hover {
  transform: scale(1.05);
}

#contacto {
  padding-top: 20px;
  background-color: #2c2c2c;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #1e1e1e;
  font-size: 14px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.contact-buttons {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4285f4;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-buttons a:hover {
  background-color: #3367d6;
  transform: scale(1.05);
}

.contact-buttons a img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  cursor: pointer;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-map iframe {
    height: 300px;
  }
  .servicio-row {
    grid-template-columns: 1fr;
    min-height: 240px;
  }
  .slider-servicio {
    height: 220px;
  }
  .slider-servicio[data-slider="lavadero"],
  .slider-servicio[data-slider="detailing"] {
    height: 350px;
  }
  .servicio-btn {
    width: 90%;
  }
}

.titulo-seccion {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #f4d76b, #ffe8a8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 10px rgba(244, 207, 89, 0.25), 0px 0px 18px rgba(255, 240, 160, 0.20);
  animation: tituloBrillo 3.5s ease-in-out infinite alternate;
}

@keyframes tituloBrillo {
  0% {
    text-shadow: 0px 0px 6px rgba(244,197,66,0.2), 0px 0px 12px rgba(255,230,165,0.12);
  }
  100% {
    text-shadow: 0px 0px 14px rgba(244,197,66,0.4), 0px 0px 28px rgba(255,240,180,0.15);
  }
}

.botones-servicio {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.botones-servicio a {
  background: #f4d76b;
  padding: 10px 18px;
  border-radius: 10px;
  color: #222;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.35);
  transition: transform .2s, box-shadow .2s, background .2s;
}

.botones-servicio a:hover {
  transform: scale(1.07);
  background: #ffe8a8;
  box-shadow: 0 0 14px rgba(255, 230, 150, .45);
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(0,0,0,0.4);
  transition: transform .25s, box-shadow .25s, background .25s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.07);
  box-shadow: 0 0 18px rgba(0,0,0,0.55);
}

.parking-info {
  margin-top: 20px;
  text-align: center;
}
.info-toggle {
  display: inline-block;
  width: auto; 
  padding: 15px;
  background-color: #d4af37;
  color: black;
  border: none;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: 0.25s;
}

.info-toggle:hover {
  background-color: #c19d32;
  transform: scale(1.02);
}

.parking-sections {
  margin-top: 15px;
  background: rgba(0,0,0,0.35);
  padding: 18px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.09);
  display: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.parking-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-btn {
  padding: 12px 22px;
  background: #222;
  color: #f4d76b;
  border: 1px solid #444;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s, transform 0.2s;
}

.section-btn:hover {
  background: #333;
  transform: scale(1.04);
}

.parking-info {
  margin-top: 20px;
  text-align: center;
}

.info-toggle {
  display: inline-block;
  width: auto; 
  padding: 15px;
  background-color: #d4af37;
  color: black;
  border: none;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: 0.25s;
}

.info-toggle:hover {
  background-color: #c19d32;
  transform: scale(1.02);
}

.parking-sections {
  margin-top: 15px;
  background: rgba(0,0,0,0.35);
  padding: 18px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.09);
  display: none;
}

.parking-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-btn {
  padding: 12px 22px;
  background: #222;
  color: #f4d76b;
  border: 1px solid #444;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s, transform 0.2s;
}

.section-btn:hover {
  background: #333;
  transform: scale(1.04);
}

.parking-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 340px;
  display: none;
}
.parking-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.precio {
  font-weight: 700;
  margin-right: 10px;
}

.seleccionar-btn,
.seleccionar-detail-btn {
  padding: 6px 10px;
  font-size: 13px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.seleccionar-btn:hover,
.seleccionar-detail-btn:hover {
  background-color: #666;
}

.seleccionar-btn.seleccionado,
.seleccionar-detail-btn.seleccionado {
  background: #4caf50 !important;
  transform: scale(1.05);
}
.lista-lavados li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lista-lavados span {
  font-size: 15px;
  font-weight: 600;
}

.lista-lavados .seleccionar-btn {
  padding: 6px 10px;
  font-size: 13px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.lista-lavados .seleccionar-btn:hover {
  background-color: #666;
}

.lista-lavados {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 360px;
}

.lista-lavados li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2f2f2f;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  gap: 10px;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.item-info span:first-child {
  font-size: 15px;
  font-weight: 600;
}

.item-info span:last-child {
  font-size: 14px;
  font-weight: 700;
}

.seleccionar-btn {
  padding: 6px 10px;
  font-size: 13px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.seleccionar-btn:hover {
  background-color: #666;
}

.seleccionar-btn.seleccionado {
  background: #4caf50 !important;
  color: white;
  transform: scale(1.05);
}

.lista-detailing {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 360px;
}

.lista-detailing li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2f2f2f;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  gap: 10px;
}

.lista-detailing span {
  font-size: 15px;
  font-weight: 600;
}

.seleccionar-detail-btn {
  padding: 6px 10px;
  font-size: 13px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.seleccionar-detail-btn:hover {
  background-color: #666;
}

.seleccionar-detail-btn.seleccionado {
  background: #4caf50 !important;
  transform: scale(1.05);
}

.lista-servicios {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 360px;
}

.lista-servicios li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2f2f2f;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  gap: 10px;
}

.lista-servicios .item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lista-servicios .item-info span:first-child {
  font-size: 15px;
  font-weight: 600;
}

.lista-servicios .item-info span:last-child {
  font-size: 14px;
  font-weight: 700;
}
