.footerstyle {
    background-color: #4c2026;
    color: white;
    padding: 60px 20px 20px;
    font-family: sans-serif;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footerstyle .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .footerstyle .footer-column {
    flex: 1 1 300px;
    margin-bottom: 30px;
  }
  
  .footerstyle img {
    max-width: 240px;
    height: auto;
    margin-bottom: 15px;
  }
  .footer-textwa {
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    margin-right: 130px;
    margin-top: 0px;
  }
  .footerstyle .footer-text {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-right: 65px;
  }
  
  .footerstyle .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
    color: inherit; /* Para que no ponga el azul predeterminado */

  }
  
  .footerstyle .social-icons a {
    text-decoration: none; /* <- esto es clave */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: inherit; /* por si acaso */

  }
  
  .footerstyle .social-icons a:hover {
    background-color: #e4bc5c;
    transform: translateY(-3px);
  }
  
  .footerstyle .social-icons i {
    font-size: 18px;
    color: white;
  }
  
  .footerstyle h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e4bc5c;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footerstyle h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e4bc5c;
  }
  
  .footerstyle ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footerstyle ul li {
    margin-bottom: 12px;
  }
  
  .footerstyle ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
  }
  
  .footerstyle ul li a:hover {
    color: #e4bc5c;
    padding-left: 5px;
  }
  
  .footerstyle .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footerstyle .contact-item i {
    font-size: 16px;
    margin-top: 3px;
    color: #e4bc5c;
    min-width: 16px;
  }
  
  .footerstyle .contact-item span {
    flex: 1;
  }
  
  .footerstyle .bottom-footer {
    border-top: 1px solid rgba(228, 188, 92, 0.3);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.9rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footerstyle .bottom-footer .legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .footerstyle .bottom-footer .legal-links a {
    color: #e4bc5c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .footerstyle .bottom-footer .legal-links a:hover {
    text-decoration: underline;
    color: white;
  }
  
  .footerstyle .bottom-footer .copyright-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #fff;
  }
  
  /* Media queries para dispositivos móviles */
  @media (max-width: 992px) {
    .footerstyle .footer-container {
      gap: 40px;
      justify-content: flex-start;
    }
    
    .footerstyle .footer-column {
      flex: 1 1 45%;
    }
  }
  
  @media (max-width: 768px) {
    .footerstyle {
      padding: 40px 15px 20px;
    }
    
    .footerstyle .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .footerstyle .footer-column {
      flex: 1 1 100%;
      margin-bottom: 10px;
    }
    
    .footerstyle .social-icons {
      justify-content: flex-start;
    }
    
    .footerstyle .bottom-footer .copyright-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .footerstyle .bottom-footer .legal-links {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
      .footer-textwa {

    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
    margin-left: 15px;
    margin-top: 0px;
  }
  }

