/* FOOTER ESTILIZADO */
footer {
    background: linear-gradient(to bottom, #f65915, #f3ac8d);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
    font-family: 'Inter', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--cor-menu);
  }
  
  .footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: white;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
  }
  
  .footer-section ul li i {
    font-style: normal;
  }
  
  .footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section a:hover {
    color: var(--cor-menu);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
  }
  .social-links a.instagram {
    background-image: url(/img/icones-sociais/icons8-instagram-48.png);
    background-size: 44px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .social-links a.facebook {
    background-image: url(/img/icones-sociais/icons8-facebook-48.png);
    background-size: 44px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .social-links a.twitter {
    background-image: url(/img/icones-sociais/icons8-twitter-48.png);
    background-size: 44px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .social-links a.pinterest {
    background-image: url(/img/icones-sociais/icons8-pinterest-48.png);
    background-size: 44px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .social-links a.whatsapp {
    background-image: url(/img/icones-sociais/icons8-whatsapp-48.png);
    background-size: 44px;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .social-links a:hover {
    transform: translateY(-3px);
  }
  
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-newsletter input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .footer-newsletter button {
    padding: 12px 15px;
    background: var(--cor-menu);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .footer-newsletter button:hover {
    background: #d13b01;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: black;
  
  }
  
  .footer-bottom p {
    margin-bottom: 5px;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .footer-section {
      text-align: center;
    }
    
    .footer-section h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .social-links {
      justify-content: center;
    }
    
    .footer-section ul li {
      justify-content: center;
    }
  }