/* ========== FOOTER PREMIUM ========== */
.app-footer {
    background: var(--primary-dark);
    color: var(--pure-white);
    padding: 4rem 0 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Efeito de gradiente no topo */
  .app-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
  }
  
  /* Container do conteúdo */
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  
  /* Seções do footer */
  .footer-section {
    padding: 1rem;
    position: relative;
    z-index: 1;
  }
  
  /* Logo no footer */
  .footer-logo {
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: transform 0.5s ease;
  }
  
  .footer-logo:hover img {
    transform: scale(1.05);
  }
  
  .footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
  }
  
  /* Títulos das seções */
  .footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: var(--pure-white);
    position: relative;
    padding-bottom: 0.8rem;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
  }
  
  /* Links do footer */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--pure-white);
    transform: translateX(8px);
  }
  
  .footer-links a:hover::before {
    width: 20px;
  }
  
  .footer-links a i {
    margin-right: 0.8rem;
    font-size: 0.8rem;
    color: var(--primary-accent);
    transition: transform 0.3s;
  }
  
  .footer-links a:hover i {
    transform: rotate(45deg);
  }
  
  /* Seção de contato */
  .contact-methods {
    margin-top: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .contact-item i {
    color: var(--primary-accent);
    margin-right: 1.2rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
  
  .contact-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.3rem;
  }
  
  .contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
  }
  
  /* Botões de download do app */
  .download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .app-download {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .app-download:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .app-download:hover::before {
    opacity: 1;
  }
  
  .app-download i {
    font-size: 2rem;
    margin-right: 1.2rem;
    color: var(--pure-white);
    transition: transform 0.3s;
  }
  
  .app-download:hover i {
    transform: scale(1.1);
  }
  
  .app-download div {
    display: flex;
    flex-direction: column;
  }
  
  .app-download div span:first-child {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .app-download div span:last-child {
    font-size: 1rem;
    color: var(--pure-white);
    font-weight: 600;
  }
  
  /* Redes sociais */
  .social-media {
    margin-top: 2rem;
  }
  
  .social-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1.2rem;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--pure-white);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
  }
  
  .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .social-icons a:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 4, 1, 0.3);
  }
  
  .social-icons a:hover::before {
    opacity: 1;
  }
  
  .social-icons a i {
    position: relative;
    transition: transform 0.3s;
  }
  
  .social-icons a:hover i {
    transform: scale(1.2);
  }
  
  /* Parte inferior do footer */
  .footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.8rem 0;
    margin-top: 4rem;
    position: relative;
  }
  
  .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .legal-links {
    display: flex;
    gap: 1.8rem;
  }
  
  .legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
  }
  
  .legal-links a:hover {
    color: var(--pure-white);
  }
  
  .legal-links a:hover::after {
    width: 100%;
  }
  
  /* Efeitos especiais */
  .footer-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .footer-section {
      padding: 1rem 0;
    }
    
    .footer-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
    }
  }
  
  @media (max-width: 768px) {
    .app-footer {
      padding: 3rem 0 0;
    }
    
    .footer-container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .footer-legal {
      flex-direction: column;
      gap: 1.2rem;
      text-align: center;
    }
    
    .legal-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    
    .footer-bottom {
      margin-top: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .app-download {
      padding: 0.8rem;
    }
    
    .app-download i {
      font-size: 1.8rem;
      margin-right: 0.8rem;
    }
    
    .social-icons a {
      width: 38px;
      height: 38px;
      font-size: 0.9rem;
    }
  }
  
  /* Animações */
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
  .footer-logo:hover img {
    animation: float 3s ease-in-out infinite;
  }
  