/* ======= FOOTER MODERNO ======= */
.site-footer {
    background: linear-gradient(90deg, #e0f7fa 0%, #fff 100%);
    border-top: 2px solid #00bcd4;
    padding-top: 32px;
    margin-top: 48px;
    font-size: 1.08rem;
    color: #333;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 18px;
  }
  
  .footer-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .footer-menu a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    padding: 0.2em 0.5em;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  
  .footer-menu a:hover {
    background: #00bcd4;
    color: #fff;
  }
  
  .social-menu {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    margin-top: -1rem;
  }
  
  .social-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #00bcd4;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    position: relative;
    padding: 0;
  }
  
  .social-menu a:hover {
    background: #0097a7;
    transform: scale(1.08);
  }
  
  .social-menu .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }
  
  /* Copyright */
  .site-info {
    background: none;
    color: #666;
    font-size: 1rem;
    padding: 18px 0 8px 0;
    text-align: center;
    border-top: 1px solid #e0f7fa;
    margin-top: 12px;
  }
  
  
  .social-menu li a::before {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 1.25em;
    display: inline-block;
    margin-right: 0;
    content: '';
    transition: color 0.2s;
  }
  
  /* Facebook */
  .social-menu li.facebook a::before {
    content: '\f09a';
    color: #1877f3;
  }
  
  /* Instagram */
  .social-menu li.instagram a::before {
    content: '\f16d';
    color: #e4405f;
  }
  
  /* Twitter */
  .social-menu li.twitter a::before {
    content: '\f099';
    color: #1da1f2;
  }
  
  /* Puedes añadir más redes así: */
  /* .social-menu li.youtube a::before { content: '\f167'; color: #ff0000; } */
  
  .social-menu li a {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #00bcd4;
    font-size: 1.3rem;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    position: relative;
    padding: 0;
    border: 2px solid #e0f7fa;
  }
  
  .social-menu li a:hover {
    background: #e0f7fa;
    transform: scale(1.08);
  }