@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 420px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 360px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.title {
    text-align: center;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.subtitle {
    text-align: center;
    color: #e94560;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.link-btn:hover::before {
    left: 100%;
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.link-btn:active {
    transform: translateY(-1px);
}

.icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* WhatsApp Group - Verde vibrante */
.whatsapp-group {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-group:hover {
    background: linear-gradient(135deg, #2be874 0%, #159c8a 100%);
}

/* WhatsApp Atendimento - Verde com tom diferente */
.whatsapp {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.whatsapp:hover {
    background: linear-gradient(135deg, #159c8a 0%, #0a7566 100%);
}

/* Instagram - Gradiente característico */
.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram:hover {
    background: linear-gradient(135deg, #ffa64d 0%, #ff7a4d 25%, #ff3366 50%, #e6337a 75%, #d11f99 100%);
}

/* Facebook - Azul */
.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
}

.facebook:hover {
    background: linear-gradient(135deg, #2b8aff 0%, #1068d4 100%);
}

/* Salvar Contato - Vermelho Redefort */
.contato {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
}

.contato:hover {
    background: linear-gradient(135deg, #ff5a75 0%, #e04560 100%);
}

.footer {
    margin-top: 30px;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

.link-btn {
    animation: fadeInUp 0.6s ease-out backwards;
}

.link-btn:nth-child(1) { animation-delay: 0.1s; }
.link-btn:nth-child(2) { animation-delay: 0.2s; }
.link-btn:nth-child(3) { animation-delay: 0.3s; }
.link-btn:nth-child(4) { animation-delay: 0.4s; }
.link-btn:nth-child(5) { animation-delay: 0.5s; }

/* Responsividade */
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }
    
    .logo {
        width: 300px;
        height: auto;
    }
    
    .title {
        font-size: 1.4rem;
    }
    
    .link-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

