body {
  font-family: 'HyundaiSansHeadRegular', sans-serif;
}
.img_hatch1_0{
    width: 100%
}
/*index*/
#taller_b{
    background-color: #d8d6d6;
}
/*header arriba*/
.Headings {
  background-color: #002c5f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
  gap: 25px;
}

.Headings a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px; 
  transition: 0.3s;
}

.Headings a:hover {
  color: #ccc;
}

#Logo_OVCAR,
#Logo_Hyundai {
  max-width: 130px; 
  height: auto;
}

/*Responsive*/
@media (max-width: 768px) {
  .Headings {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
  }

  .Headings a {
    font-size: 22px; 
  }

  #Logo_OVCAR,
  #Logo_Hyundai {
    max-width: 150px; 
  }
}


/*VIDEO TALLER*/
.description {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.video-section {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
  text-align: center;
}

.video-section video {
  width: 100%;
  max-height: 600px;
  border-radius: 4px;
}

/*texto descripcion inicio taller*/
.lista_taller{
  justify-content: left;
  font-size: 16px;
}
.texto_desc{
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
#titulo_desc{
  text-decoration: underline solid black;
  font-size: 24px;
  background-color: rgb(255, 255, 91);
  padding-top: 2%;
  padding-bottom: 2%;
}
#recomendacion_desc{
  font-size: 20px;
  text-decoration: dashed;
  background-color: rgb(151, 222, 250);
  padding-top: 2%;
  padding-bottom: 2%;
}
.maquinas{
  margin-top: 2.5%;
  margin-bottom: 2.5%;
}

/* Mapa Taller*/
.map-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 2.5%;
}

.map-item {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: #000 solid 1px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  text-align: center;
  padding: 10px 0;
  margin: 0;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .map-grid {
    flex-direction: column;
    align-items: center;
  }

  .map-item {
    max-width: 90%;
  }
}

/*Whatsapp Flotante*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/*final de pagina*/
.final_pagina {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #002b5c; 
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo_item img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.info_item {
  color: white;
  text-align: center;
  max-width: 200px;
}

.info_y_direccion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_y_direccion .titulo {
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .final_pagina {
    flex-direction: column;
    text-align: center;
  }

  .logo_item img {
    max-width: 100px;
  }
}

/*GALERIA TALLER*/
#b_galeria{
  background-color: rgba(13, 17, 56, 0.774);
}
#heading_galeria{
  font-size: 24px;
  text-align: center;
  justify-content: center;
}
.gallery-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-image {
  width: 100%;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.thumbnails {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.thumbnails img {
  height: 80px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.thumbnails img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .thumbnails img {
    height: 60px;
  }
}

/*Contacto*/
#b_contacto{
  background-color: rgb(188, 223, 228);
}
/*Tabla Contactos*/
#contactos_ov_car_paint{
    border: #000 5px;
    border-style: dashed;
    margin-top: 2.5%;
    margin-left: 5%;
    margin-right: 5%;
    background-color: #b6cadd;
    padding-bottom: 1%;
}
.heading_contactos_2{
    text-align: center;
    background-color: #002c5f;
    color: #FFF;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 2%;
    padding-bottom: 2%;
}
#tabla_contacto_ovcar {
  max-width: 600px;
  margin: 20px auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  border: 2px solid #000;
}

#tabla_contacto_ovcar table {
  width: 100%;
  border-collapse: collapse;
}

#tabla_contacto_ovcar td {
  padding: 10px 15px;
  vertical-align: middle;
  border: 2px solid #000;
  background-color: #FFF;
}

.parte_img_tabla {
  width: 40px;
  text-align: center;
}

.logo_tabla_contacto_img {
  max-width: 32px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#tabla_contacto_ovcar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

#tabla_contacto_ovcar a:hover {
  color: #007bff;
  text-decoration: underline;
}

@media (max-width: 600px) {
  #tabla_contacto_ovcar td {
    display: block;
    justify-content: center;
    text-align: center;
    width: 90%;
    margin-left: 1.5%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
/*Tabla Horarios*/
#lista_horarios{
    background-color: #FFF;
}

h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
}

ul#horario {
  list-style-type: none;
  padding: 0;
  max-width: 300px;
  margin: 0 auto;
    text-align: center;
}

ul#horario li {
  padding: 6px 12px;
  border-bottom: 1px solid #ddd;
}

ul#horario li.hoy {
  font-weight: bold;
}

@media (max-width: 480px) {
  .models li {
    width: 95%;
  }
}
#heading_horario{
    padding-top: 5%;
}
#lista_horarios{
    width: 50%;
    margin-left: 25%;
    margin-top: 2.5%;
    padding-bottom: 5%;
    border: 1px solid #000;
    margin-bottom: 2.5%;
}