/*footer*/

.footer{
  background: var(--bg-color-dark);
  color: var(--text-color);
  padding: 4rem 5% 2rem;
  font-family: var(--fuenteExo);
  justify-content: center;
  align-items: center;
}

.footer-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-section img {
  width: 50%;
  margin-bottom: 1.5rem;  
  display: block;          
}

.footer-section p {
  line-height: 1.8; /* un poco más de espacio para leer rápido */
  font-size: 1rem;  /* asegura buena lectura en móviles */
}

.footer-section h3{
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section-centrar{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.footer-section-centrar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-centrar ul li {
  margin-bottom: 1rem;
}

.footer-section-centrar ul li a {
  position: relative;
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-centrar ul li a::before  {
  content: " ";
  position: absolute;
  /*left: -25px;*/
  right: -25px;
  top: 30%;
  transform: translateY(-50%);
  
  width: 18px;
  height: 18px;

  background-image: url("../img/siluetagutarr01.png");
  background-size: contain;
  background-repeat: no-repeat;

  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section-centrar ul li a:hover {
  color: var(--text-color);
  transform: translateY(-3px) translateX(-5px);
}


.footer-section-centrar ul li a:hover::after {
  width: 100%;
}

.footer-section-centrar ul li a:hover::before {
  opacity: 1;
  /*left: -25px;*/
  right: -25px;
  filter: drop-shadow(0 0 0.1rem rgb(189, 189, 189));
}

.social-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  color: var(--text-color);
  font-size: 1.5rem;
  padding: 5px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: white;
  transform: scale(1.2);
  transition: all 0.3s ease;
  font-weight: bolder;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


@media (max-width: 700px) {

  .footer-section img {
  width: 100%;
  margin-bottom: 3rem;  
  display: block;          
}
  
.footer-content{
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

}

@media (max-width: 610px) {
}

@media (max-width: 425px) {

}

@media (max-width: 375px) {
}

@media (max-width: 320px) {
}


/*
.btn-whatsapp {
  background-color: #25D366;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}*/