/* Estilos CSS */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  .img{
      width: 55%;
      height: 150%;
      left: 70%;
      transform: translateX(-45%);
      position: absolute;
      z-index: -1;
  }

  header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .call-button1 {
      display: inline-block;
      padding: 10px 20px;
      color: white;
      border-radius: 5px;
      text-decoration: none;
      font-size: 16px;
      transition: transform 0.3s ease;
      margin: 10px;
  }
  .call-button1:hover {
    transform: scale(1.3);
  }

  .whatsapp-button {
      background-color: #25D366; /* Color de WhatsApp */
  }

  .call-button1.phone-button {
      background-color: #007bff; /* Color azul para llamadas */
  }

  .facebook-button {
      background-color: #3b5998; /* Color de Facebook */
  }

  @keyframes grow {
      0%, 100% {
          transform: scale(1);
      }
      50% {
          transform: scale(1.2);
      }
  }

  .animate {
      animation: grow 5s infinite;
  }
  .call-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .call-button:hover {
    background-color: #0056b3;
  }
  
  .call-button i {
    margin-right: 5px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  nav a {
    color: #333;
    text-decoration: none;
  }
  
  main {
    padding: 20px;
  }
  
  section {
    margin-bottom: 40px;
    margin-right: 55%;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 1%;
  }
  
  h2 {
    color: #333;
    text-align: center;
  }
  
  footer {
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;

  }
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
    font-weight: bold;
  }
  
  input, textarea {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #11e72d;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

  #comentarios-google-maps {
    margin: 20px 0;
  }
  
  .comentario {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .comentario img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .comentario h3 {
    margin: 0;
  }
  
  .comentario p {
    margin: 5px 0 0 0;
  }

  .reseña {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .reseña h2 {
    font-weight: bold;
    margin-top: 0;
  }
  
  .reseña p {
    margin-bottom: 10px;
  }

  iframe {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .review-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  scroll-behavior: smooth;
}

.review-item {
  flex: 0 0 calc(33.33% - 1rem);
  scroll-snap-align: start;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 1rem;
}
 
  .review-item blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
  }
  
  .review-item cite {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .review-carousel {
      display: block;
      padding: 0.5rem;
    }
  
    .review-item {
      flex: 0 0 auto;
      padding: 1rem;
      margin-bottom: 1rem;
      margin-right: 0;
    }
  
    .review-item blockquote {
      font-size: 1rem;
    }
  
    .review-item cite {
      font-size: 0.8rem;
    }
    .slider {
      max-width: 100%; /* Permite que el slider ocupe todo el ancho en pantallas pequeñas */
      aspect-ratio: 3 / 4; /* Cambia la relación de aspecto si es necesario */
    }
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cookie-notice-actions {
    display: flex;
    align-items: center;
  }
  
  .cookie-accept-btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
  }
  
  .cookie-policy-link {
    color: #fff;
    text-decoration: underline;
  }
  .call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
  }
  
  .call-btn i {
    margin-right: 10px;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .slider {
    margin-left: 0px;
    width: 500px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #ccc; /* Color de borde gris claro */
  background-color: #f5f5f5; /* Color de fondo gris claro */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}