



/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f5f7f9;
  min-height: 100vh;
}

/* Fondo parallax */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('uploads/skilful_frente.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.08;
  z-index: -1;
}


 
h1 {
  font-size: 2.4rem; /* tamaño normal en pantallas grandes */
}

/* Pantallas pequeñas: reducir tamaño */
@media (max-width: 480px) {
  h1 {
    font-size: 1.3rem; /* ajusta a tu preferencia */
  }
}


/* Tipografías y títulos */
h2 {
  color: #7e71e6;
  margin-top: 20px;
  margin-bottom: 10px;
}

h3 {
  color: black;
}


.horario-hoy {
  background-color: #7598e6;
  border-radius: 6px;
  padding: 4px 8px;
}


  
  /* Estilo base */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

/* Logo y frente responsivos */
.logo, .frente {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 120px;
}

/* En pantallas pequeñas, espaciamos más */
@media only screen and (max-width: 600px) {
  
  
/* Contenedor logo + frente */
.logo-frente-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;         /* Asegura que ocupe todo el ancho */
  padding: 0 10px;     /* Reduce padding lateral */
  box-sizing: border-box;
}

/* Imágenes responsivas */
.logo, .frente {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 100px;
}

/* Ajustar márgenes para empujar hacia extremos */
.logo {
  margin-right: 0; /* auto */
}

.frente {
  margin-left: 0;/* auto */
}
}









/* Botón general */
.btn,
#btn-mapa {
  margin-top: 5px;
  margin-left: 5px;
  padding: 12px 28px;
  background-color:   #8e44ad;            /*#1b5e20;*/
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover,
#btn-mapa:hover {
  background-color: #bb8fce;         /* #4caf50;*/
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Header premium */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background:  #000;
  color: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 1;
  justify-content: flex-start;
}

.header-center {
  flex: 2;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.header-right {
  flex: 1;
  justify-content: flex-end;
}

.header-left .logo {
  max-width: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-left .logo:hover {
  transform: scale(1.18) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-right .frente {
  max-width: 220px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.header-right .frente:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* Estado abierto/cerrado */
.estado {
  font-weight: bold;
  margin-top: 10px;
  padding:6px 12px;         /*8px 16px; */ 
  border-radius: 10px;
  background-color: #ccc;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.estado.abierto {
  background-color: #4caf50;
  color: white;
}

.estado.por-cerrar {
  background-color: #ffc107;
  color: black;
}

.estado.cerrado {
  background-color: #f44336;
  color: white;
}



/* Media query para pantallas pequeñas */
@media (max-width: 480px) {
  .estado {
    font-size: 0.8rem;      /* Fuente más pequeña */
    padding: 4px 8px;       /* Menos padding */
    margin-top: 6px;        /* Menor margen */
    border-radius: 6px;     /* Un poco menos redondeado para que quede compacto */
  }
}


/* Horarios */
#horarios {
  list-style: none;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  padding: 0;
  margin: 20px auto 30px auto;
  text-align: center;
  max-width: 800px;
}

#horarios li {
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}




/* Galerías */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}


.grid img { width: 100%; border-radius: 12px;
   box-shadow: 0 6px 20px rgba(0,0,0,0.15); 
   transition: transform 0.4s ease, box-shadow 0.4s ease; 
  }




.grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}





/* 3. Secciones blancas con estilo similar al mapa */
.seccion {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}




#map {
  height: 320px;
  width: 100%;
  border-radius: 12px;
  margin-top: 20px;
}


/* Footer */
footer {
  text-align: center;
  padding: 15px 0;
  background-color: #000;
  color: #fff;
  border-radius: 0 0 10px 10px;
}




/*redes*/

.main {
  display: flex;
  flex-direction: column;
  gap: 0.5em;

    justify-content: center;
    align-items: center;
}

.up {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.down {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.card1 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 90px 5px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.instagram {
  margin-top: 1.5em;
  margin-left: 1.2em;
  fill: #cc39a4;
}

.card2 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 90px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.facebook {
  margin-top: 1.5em;
  margin-left: -.9em;
  fill: #03A9F4;
}

.card3 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 5px 90px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.whatsapp {
  margin-top: -.6em;
  margin-left: 1.2em;
  fill: #00ff00;
}

.card4 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 90px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.gmail {
  margin-top: -.9em;
  margin-left: -1.2em;
  fill: #f14336;
}

.card1:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #cc39a4;

}

.card1:hover .instagram {
  fill: white;
}

.card2:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #1877f2;
}

.card2:hover .facebook {
  fill: white;
}

.card3:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #00ff00;
}

.card3:hover .whatsapp {
  fill: white;
}

.card4:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #FF0004;
  


}

.card4:hover .gmail {
  fill: white;
 
}


/*calificacion*/
/* Contenedor general para centrar la caja */
/* Centrar todo en la pantalla */


/* Contenedor de las estrellas */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
}

/* Ocultar los inputs */
.rating input {
  display: none;
}

/* Estilos de las estrellas */
.rating label {
  font-size: 40px;
  color: #ccc;
  cursor: pointer;
}

.rating label::before {
  content: '★';
}

/* Hover */
.rating label:hover,
.rating label:hover ~ label {
  color: #ff9e0b;
}

/* Estrellas seleccionadas */
.rating input:checked ~ label {
  color: #ffa723;
}

/* Hover combinado con selección */
.rating input:checked + label:hover,
.rating input:checked + label:hover ~ label,
.rating input:checked ~ label:hover,
.rating input:checked ~ label:hover ~ label {
  color: #e58e09;
}




/*BOTON COMPARTIR*/

.copy-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/* Botón */
.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}

.button-content:hover {
  background: linear-gradient(135deg, #a777e3, #6e8efb);
  transform: scale(1.05);
}

.text {
  margin-right: 8px;
}

/* Tooltip */
.tooltip-content {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

