/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #d2d2d2;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 420px; /* Tamanho comum para páginas de links no Instagram */
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: url('../images/fundo-metalico.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
    height: auto;
}



/* Cabeçalho com efeito glass */
.header {
    margin-bottom: 30px;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.logo {
    max-width: 180px;
    height: 100px;
    position: relative;
    z-index: 2;
}

/* Efeito glass atrás da logo */
.logo-container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Ícones flutuantes */
.icons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.icon-link {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.03);
}

/* Estilos dos links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;

}

.link-button:hover {
    transform: scale(1.05);

}

.link-button img {
    width: 100%;
    height: auto;
    display: block;
}

.link-button span {
    display: block;
    padding: 12px 15px;
    background-color: white;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Rodapé */
.footer {
    margin-top: 30px;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #888;
}

/* Responsividade */
@media (min-width: 768px) {
    .container {
        max-width: 500px;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .logo-container::before {
        width: 240px;
        height: 120px;
    }
    
    .link-button span {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        max-width: 160px;
    }
    
    .logo-container::before {
        width: 180px;
        height: 90px;
    }
    
    .icon-link {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/*Flutuação dos icons*/


.icon-floating {
    position: absolute;
    width: 50px; /* ajuste conforme necessário */
    height: 50px;
    animation: float 3s ease-in-out infinite;
}

.icon-top-right {
    top: 5px;
    right: 20px;
}

.icon-bottom-left {
    bottom: 10px;
    left: 20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}


  .raio {
      position: absolute;
      width: 60px;
      height: 60px;
      animation: flutuar 4s infinite ease-in-out;
    }

    @keyframes flutuar {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }

    .raio1 { top: 5%; left: 10%; }
    .raio2 { top: 20%; right: 10%; animation-delay: 1s; }
    .raio3 { bottom: 20%; left: 5%; animation-delay: 2s; }
    .raio4 { bottom: 10%; right: 15%; animation-delay: 3s; }
  
    @media (max-width: 768px) {
    

    .botao-link {
      height: 150px;
      max-width: 90%;
    }

    .raio {
      width: 40px;
      height: 40px;
    }

    .container {
      gap: 20px;
      padding: 20px 10px;
    }
  }