* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1A44B7;
    --button-blue: #1538A0;
    --white: #FFFFFF;
    --text-white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-blue);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.logo-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.company-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.description {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--button-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    padding: 12px;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.link-button {
    background-color: var(--button-blue);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.link-button:active {
    transform: translateY(0);
}

.link-button span {
    flex: 1;
    text-align: left;
    text-transform: none;
}

.link-button svg {
    flex-shrink: 0;
    margin-left: 12px;
}

.footer {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-separator {
    color: var(--white);
    opacity: 0.7;
}

.copyright {
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        padding: 8px;
    }
    
    .company-name {
        font-size: 28px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .description {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .social-icons {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .links-container {
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .link-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .footer-links {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .container {
        padding: 20px 10px;
    }
    
    .logo-container {
        width: 90px;
        height: 90px;
        margin-bottom: 16px;
        padding: 6px;
    }
    
    .company-name {
        font-size: 24px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }
    
    .description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .social-icons {
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .link-button {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .link-button svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-links {
        font-size: 12px;
        gap: 6px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeInUp 0.6s ease-out;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }
.container > *:nth-child(5) { animation-delay: 0.5s; }
.container > *:nth-child(6) { animation-delay: 0.6s; }

/* Efeito ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

