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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #E1E1E2 0%, #d4d4d5 100%);
    color: #193B59;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(25, 59, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 183, 75, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 600px;
    width: 100%;
    background: linear-gradient(145deg, #193B59 0%, #1a4264 100%);
    color: #E1E1E2;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(236, 183, 75, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    margin-bottom: 40px;
}

.main-title {
    margin: 0 0 10px 0;
    font-size: 2.2em;
    font-weight: 700;
    color: #ECB74B;
    text-shadow: 0 2px 10px rgba(236, 183, 75, 0.3);
    letter-spacing: -0.5px;
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.subtitle {
    font-size: 1.15em;
    color: #E1E1E2;
    margin-top: 5px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.4s both;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ECB74B, transparent);
    margin: 25px auto;
    border-radius: 2px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.section-title {
    color: #ECB74B;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(236, 183, 75, 0.2);
}

.section-description {
    font-size: 1em;
    color: #E1E1E2;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    margin-top: 40px;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ECB74B 0%, #d4a942 100%);
    color: #193B59;
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(236, 183, 75, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.link-button::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-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(236, 183, 75, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f5c85a 0%, #ECB74B 100%);
}

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

.link-button .icon {
    font-size: 1.3em;
    margin-right: 12px;
}

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

.link-button .arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.link-button:hover .arrow {
    transform: translateX(5px);
    opacity: 1;
}

.link-button.coming-soon {
    background: linear-gradient(135deg, rgba(236, 183, 75, 0.6) 0%, rgba(212, 169, 66, 0.6) 100%);
    opacity: 0.8;
    cursor: not-allowed;
    position: relative;
}

.link-button.coming-soon::before {
    display: none;
}

.link-button.coming-soon:hover {
    transform: none;
    background: linear-gradient(135deg, rgba(236, 183, 75, 0.6) 0%, rgba(212, 169, 66, 0.6) 100%);
    box-shadow: 
        0 4px 15px rgba(236, 183, 75, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-button.coming-soon .arrow {
    display: none;
}

.link-button.coming-soon .badge {
    font-size: 0.75em;
    background: rgba(25, 59, 89, 0.3);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.logo-container {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 183, 75, 0.2);
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 640px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .main-title {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 1em;
    }

    .logo {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.6em;
    }

    .section-title {
        font-size: 1.3em;
    }

    .link-button {
        padding: 14px 18px;
    }

    .link-button .icon {
        font-size: 1.2em;
        margin-right: 10px;
    }
}
