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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0d1418 0%, #1a2530 100%);
    min-height: 100vh;
    padding: 15px 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    margin-bottom: 30px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.status-badge {
    background: #ff9800;
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.subtitle {
    color: #8696a0;
    font-size: 14px;
}

.info-card {
    background: #1a2530;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    text-align: center;
    margin-bottom: 20px;
}

.icon-container {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.info-title {
    color: #e9edef;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-text {
    color: #8696a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.highlight {
    color: #25d366;
    font-weight: 700;
}

.cta-section {
    background: #1a2530;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.2s ease;
}

.cta-title {
    color: #e9edef;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #128C7E 0%, #25d366 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.instagram-btn {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.25);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.35);
}

.website-btn {
    background: linear-gradient(135deg, #2c5364 0%, #0f2027 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 83, 100, 0.25);
}

.website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 83, 100, 0.35);
}

.link-icon {
    font-size: 20px;
}

.footer {
    width: 100%;
    background: #0d1418;
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #2a3942;
}

.footer-text {
    color: #8696a0;
    font-size: 11px;
    text-align: center;
    margin: 0;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive - Desktop */
@media (min-width: 769px) {
    body {
        padding: 30px 30px 0;
    }
    
    .container {
        max-width: 480px;
        margin-bottom: 40px;
    }
    
    .header {
        margin-bottom: 25px;
    }
    
    .status-badge {
        font-size: 20px;
        padding: 12px 28px;
        margin-bottom: 12px;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    .info-card {
        padding: 35px 30px;
        margin-bottom: 25px;
    }

    .icon-container {
        font-size: 72px;
        margin-bottom: 25px;
    }
    
    .info-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .info-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-section {
        padding: 30px;
    }
    
    .cta-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .link-btn {
        padding: 18px;
        font-size: 16px;
    }
    
    .footer {
        padding: 10px 20px;
    }
    
    .footer-text {
        font-size: 12px;
    }
}
