/* Estilo del logo y la barra de navegación */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff ;
  padding: 10px 30px;
}

.logo-img {
  height: 50px;
  margin-right: 20px;
}

.navbar-toggler {
  margin-left: auto;
  margin-right: 20px;
  /* Ajusta esta propiedad para controlar la distancia al logo */
}

.navbar-nav .nav-link {
  color: #443e32;
  font-weight: bold;
  margin-right: 15px;
}

.navbar-nav .nav-link:hover {
  color: #032ea5;
}

.form-inline .form-control {
  width: 150px;
}

.form-inline .btn-outline-success {
  color: #443e32;
  border-color: #443e32;
}

.form-inline .btn-outline-success:hover {
  background-color: #18cb04;
  color: #0f0303;
  border-color: #2b9f3a;
}

@media (max-width: 576px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .form-inline {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}

.contacto-section {
  position: relative;
  width: 100%;
}

.img-fluid {
  width: 100%;
  height: auto;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.contact-title {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Efecto de palpitación */
.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}



/* Sección de información */
.info-section {
  background-color: #ebfdc6;
  /* Cambia este color según tu diseño */
  color: rgb(0, 0, 0);
}

.info-item h4 {
  color: #2b9f3a;
  /* Color de los títulos */
  font-weight: bold;
  margin-top: 10px;
}

.info-item i {
  color: #000000;
}

.info-item p {
  font-size: 1rem;
  margin-top: 10px;
}



/*CONTACTO*/


.contact-form {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group textarea {
  resize: vertical;
  height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.contact-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Sección del mapa */
/* Diseño para pantallas grandes (por defecto en fila) */
.details-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: rgb(235, 253, 198);
  padding: 20px;
  border-radius: 12px;
}
/* Ajustes para la sección de texto */
.details-section {
  max-width: 50%;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

/* Ajustes para la imagen */
.image-container img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Animación de latido */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.heartbeat {
  display: inline-block;
  animation: heartbeat 1.5s infinite;
  color: #2b9f3a;
  font-weight: bold;
}

/* Ajustes para la sección de ubicaciones en pantallas pequeñas */
@media (max-width: 576px) {
  .details-container {
    flex-direction: column; /* Cambia a columna en móviles */
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .details-section {
    max-width: 100%; /* Ocupa el ancho completo en móviles */
    padding: 10px;
    font-size: 0.9rem; /* Reduce el tamaño de fuente */
  }

  .image-container {
    max-width: 100%; /* Ocupa el ancho completo en móviles */
    margin-top: 10px;
  }

  /* Ajustes de estilo para enlaces de la dirección en móviles */
  .details-section a {
    font-size: 0.9rem;
  }
}


/* Estilo general del pie de página */
.footer {
  background-color: #443e32;
  /* Fondo azul oscuro */
  color: #ffffff;
  padding: 40px 0;
  position: relative;
}

.footer h4 {
  color: #ffffff;
  /* Títulos en dorado */
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
  /* Color dorado en hover */
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #3b5998;
  /* Fondo Facebook */
  transition: background-color 0.3s ease;
}

.social-icons a:nth-child(2) {
  background-color: #e70ba5e1;
  /* Fondo LinkedIn */
}

.social-icons a:nth-child(3) {
  background-color: #000000;
  /* Fondo YouTube */
}

.social-icons a:hover {
  background-color: #ffd700;
  color: #003366;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ffffff;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Ícono flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1caa5c;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer h4 {
    font-size: 1rem;
  }

  .footer-links li {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

