* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Canvas de background animado */
#silk-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Containers e estrutura principal */

.container {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInDown 1.2s ease-out;
}

.avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #FFD600;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.avatar-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Avatar image styles */
.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Company logo styles */
.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    padding: 2px;
}

.title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Seções */
.section {
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(45deg, #FF1744, #FFD600);
    border-radius: 2px;
}

/* Botões de link */
.link-button {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-button:active {
    transform: translateY(0);
}

/* Estilos específicos para diferentes tipos de botão */
.link-button.primary::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #FF1744, #FF6B35);
}

.link-button.secondary::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #FFD600, #FF8F00);
}

.link-button.contact::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.link-button.service::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #FFD600, #FF8F00);
}

.link-button.podcast::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
}

.link-button.ai-test::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #00D4AA, #00B4D8);
}

.link-button.custom-solution::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #8E24AA, #E91E63);
}

.link-button.custom-solution {
    border: 2px solid rgba(142, 36, 170, 0.3);
    background: linear-gradient(135deg, rgba(142, 36, 170, 0.1) 0%, rgba(233, 30, 99, 0.1) 100%);
}

.link-button.custom-solution:hover {
    border-color: rgba(142, 36, 170, 0.6);
    background: linear-gradient(135deg, rgba(142, 36, 170, 0.2) 0%, rgba(233, 30, 99, 0.2) 100%);
}

/* Grupo de empresas */
.company-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.company-row .link-button {
    flex: 1;
    margin-bottom: 0;
}

/* Botão minimalista de WhatsApp */
.whatsapp-icon-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: #25D366;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.whatsapp-icon-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    background: linear-gradient(135deg, #25D366, #128C7E);
}

@media (max-width: 480px) {
    .company-row {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .whatsapp-icon-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.primary .link-icon {
    background: rgba(40, 40, 40, 0.8);
    color: #FF1744;
    border: 1px solid rgba(255, 23, 68, 0.2);
    padding: 8px;
}

.secondary .link-icon {
    background: rgba(40, 40, 40, 0.8);
    color: #FFD600;
    border: 1px solid rgba(255, 214, 0, 0.2);
    padding: 8px;
}

.contact .link-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.service .link-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: #FFD600;
    border: 1px solid rgba(255, 214, 0, 0.2);
}

.podcast .link-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: #FF6B35;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.ai-test .link-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: #00D4AA;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.link-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.link-description {
    font-size: 13px;
    color: #a0a0a0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.link-arrow {
    font-size: 14px;
    color: #666666;
    transition: all 0.3s ease;
}

.link-button:hover .link-arrow {
    color: #ffffff;
    transform: translateX(3px);
}

.link-button:hover .link-icon {
    transform: scale(1.05);
}

/* Grid de redes sociais */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 16px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    min-height: 90px;
    position: relative;
}

.social-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E1306C, #F56040, #FCAF45);
}

.social-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-button i {
    font-size: 28px;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #E1306C, #F56040, #FCAF45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-button span {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
}

.footer p {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-icons i {
    font-size: 18px;
    color: #666666;
    transition: all 0.3s ease;
}

.footer-icons i:hover {
    color: #FFD600;
    transform: translateY(-2px);
}

.footer-icons i:nth-child(1):hover {
    color: #FF1744;
}

.footer-icons i:nth-child(2):hover {
    color: #FFD600;
}

.footer-icons i:nth-child(3):hover {
    color: #FFD600;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 8px;
    }
    
    body {
        padding: 16px 8px;
    }
    
    .title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 13px;
    }
    
    .link-button {
        padding: 16px;
        margin-bottom: 10px;
    }
    
    .link-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-right: 14px;
    }
    
    .link-title {
        font-size: 15px;
    }
    
    .link-description {
        font-size: 12px;
    }
    
    .avatar-placeholder {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .avatar-image {
        border-radius: 12px;
    }
    
    .company-logo {
        border-radius: 4px;
        padding: 1px;
    }
    
    .section-title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .social-button {
        padding: 16px 12px;
        min-height: 80px;
    }
    
    .social-button i {
        font-size: 24px;
    }
    
    .social-button span {
        font-size: 12px;
    }
}

/* Efeito de loading suave */
.container {
    animation: fadeIn 1.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
